From f226a4b55a56f0b21f94730ef1fd4953ad5c7226 Mon Sep 17 00:00:00 2001 From: Kenneth Skovhus Date: Fri, 15 May 2020 21:32:47 +0200 Subject: [PATCH] Add support for empty expansions (#82) Fixes https://github.com/tree-sitter/tree-sitter-bash/issues/57 --- corpus/literals.txt | 4 + grammar.js | 4 +- src/grammar.json | 224 +- src/node-types.json | 2 +- src/parser.c | 161014 +++++++++++++++++++++-------------------- 5 files changed, 81107 insertions(+), 80141 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 2d699ee..aa06276 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -57,6 +57,8 @@ echo $# $* $@ $! Variable expansions ============================= +echo ${} +echo ${#} echo ${var1#*#} echo ${!abc} echo ${abc} @@ -68,6 +70,8 @@ echo ${abc: --- (program + (command (command_name (word)) (expansion)) + (command (command_name (word)) (expansion)) (command (command_name (word)) (expansion (variable_name) (word))) (command (command_name (word)) (expansion (variable_name))) (command (command_name (word)) (expansion (variable_name))) diff --git a/grammar.js b/grammar.js index 6457183..03d3bc6 100644 --- a/grammar.js +++ b/grammar.js @@ -489,7 +489,7 @@ module.exports = grammar({ expansion: $ => seq( '${', optional(choice('#', '!')), - choice( + optional(choice( seq( $.variable_name, '=', @@ -510,7 +510,7 @@ module.exports = grammar({ ':', ':?', '=', ':-', '%', '-', '#' )) ), - ), + )), '}' ), diff --git a/src/grammar.json b/src/grammar.json index 7e26c45..058dfc5 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2141,127 +2141,135 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "variable_name" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "_literal" + "name": "variable_name" }, { - "type": "BLANK" + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "_special_variable_name" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "/" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ":?" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ":-" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "#" + } + ] + } } ] } ] }, { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "subscript" - }, - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "_special_variable_name" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "/" - } - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ":?" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":-" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "#" - } - ] - } - } - ] + "type": "BLANK" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 1955cb9..8798556 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -604,7 +604,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "_primary_expression", diff --git a/src/parser.c b/src/parser.c index 45f00d8..4387d86 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 11 -#define STATE_COUNT 2798 +#define STATE_COUNT 2824 #define LARGE_STATE_COUNT 127 #define SYMBOL_COUNT 160 #define ALIAS_COUNT 1 @@ -1476,7 +1476,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(218); if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(46); - if (lookahead == ')') ADVANCE(150); if (lookahead == ';') ADVANCE(142); if (lookahead == '<') ADVANCE(180); if (lookahead == '>') ADVANCE(185); @@ -1486,6 +1485,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '}') ADVANCE(220); if (lookahead == '\\') ADVANCE(67); if (lookahead == '`') ADVANCE(238); + if (lookahead == 'e') ADVANCE(245); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\r' || @@ -1494,7 +1494,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(' && + lookahead != ')') ADVANCE(268); END_STATE(); case 2: if (lookahead == '\n') ADVANCE(122); @@ -1632,7 +1633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '\\') ADVANCE(82); if (lookahead == '`') ADVANCE(238); if (lookahead == '\t' || lookahead == '\r' || @@ -1648,6 +1649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(218); if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(46); + if (lookahead == ')') ADVANCE(150); if (lookahead == ';') ADVANCE(142); if (lookahead == '<') ADVANCE(180); if (lookahead == '>') ADVANCE(185); @@ -1657,7 +1659,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '}') ADVANCE(220); if (lookahead == '\\') ADVANCE(68); if (lookahead == '`') ADVANCE(238); - if (lookahead == 'e') ADVANCE(245); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\r' || @@ -1666,8 +1667,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(268); + lookahead != '(') ADVANCE(268); END_STATE(); case 9: if (lookahead == '\n') ADVANCE(126); @@ -1867,6 +1867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(218); if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(46); + if (lookahead == ')') ADVANCE(150); if (lookahead == ';') ADVANCE(142); if (lookahead == '<') ADVANCE(180); if (lookahead == '>') ADVANCE(185); @@ -1876,14 +1877,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '}') ADVANCE(220); if (lookahead == '\\') ADVANCE(76); if (lookahead == '`') ADVANCE(238); - if (lookahead == 'e') ADVANCE(266); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(15) if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(268); + lookahead != '(') ADVANCE(268); END_STATE(); case 16: if (lookahead == '\n') ADVANCE(133); @@ -1892,7 +1891,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(218); if (lookahead == '&') ADVANCE(272); if (lookahead == '\'') ADVANCE(46); - if (lookahead == ')') ADVANCE(150); if (lookahead == ';') ADVANCE(142); if (lookahead == '<') ADVANCE(180); if (lookahead == '>') ADVANCE(185); @@ -1902,12 +1900,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '}') ADVANCE(220); if (lookahead == '\\') ADVANCE(77); if (lookahead == '`') ADVANCE(238); + if (lookahead == 'e') ADVANCE(266); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(16) if (lookahead != 0 && - lookahead != '(') ADVANCE(268); + lookahead != '(' && + lookahead != ')') ADVANCE(268); END_STATE(); case 17: if (lookahead == '\n') ADVANCE(134); @@ -2059,7 +2059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\\') ADVANCE(81); if (lookahead == '_') ADVANCE(259); if (lookahead == '`') ADVANCE(238); if (lookahead == '\t' || @@ -2165,7 +2165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '\\') ADVANCE(86); if (lookahead == '`') ADVANCE(238); if (lookahead == '\t' || lookahead == '\n' || @@ -2232,7 +2232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(258); if (lookahead == '?') ADVANCE(209); if (lookahead == '@') ADVANCE(254); - if (lookahead == '\\') ADVANCE(102); + if (lookahead == '\\') ADVANCE(103); if (lookahead == '_') ADVANCE(261); if (lookahead == '\t' || lookahead == '\n' || @@ -2292,7 +2292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(187); if (lookahead == '?') ADVANCE(209); if (lookahead == '@') ADVANCE(254); - if (lookahead == '\\') SKIP(82) + if (lookahead == '\\') SKIP(83) if (lookahead == ']') ADVANCE(57); if (lookahead == '_') ADVANCE(261); if (lookahead == '|') ADVANCE(62); @@ -2309,11 +2309,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(242); if (lookahead == '$') ADVANCE(219); if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(49); if (lookahead == ')') ADVANCE(52); if (lookahead == '+') ADVANCE(200); if (lookahead == '-') ADVANCE(203); if (lookahead == ':') ADVANCE(211); + if (lookahead == ';') ADVANCE(53); if (lookahead == '<') ADVANCE(183); if (lookahead == '=') ADVANCE(174); if (lookahead == '>') ADVANCE(187); @@ -2324,36 +2324,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(93) if (lookahead == ']') ADVANCE(221); if (lookahead == '`') ADVANCE(238); + if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'i') ADVANCE(60); if (lookahead == '|') ADVANCE(62); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 32: if (lookahead == '!') ADVANCE(54); if (lookahead == '#') ADVANCE(242); if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(150); + if (lookahead == '(') ADVANCE(49); + if (lookahead == ')') ADVANCE(52); if (lookahead == '+') ADVANCE(200); if (lookahead == '-') ADVANCE(203); + if (lookahead == ':') ADVANCE(211); if (lookahead == '<') ADVANCE(183); if (lookahead == '=') ADVANCE(174); if (lookahead == '>') ADVANCE(187); if (lookahead == '?') ADVANCE(209); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') SKIP(95) - if (lookahead == ']') ADVANCE(165); - if (lookahead == '|') ADVANCE(149); + if (lookahead == '\\') SKIP(94) + if (lookahead == '|') ADVANCE(62); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); case 33: if (lookahead == '!') ADVANCE(54); @@ -2370,7 +2375,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') SKIP(96) + if (lookahead == '\\') SKIP(95) if (lookahead == '|') ADVANCE(149); if (lookahead == '\t' || lookahead == '\n' || @@ -2381,22 +2386,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(54); if (lookahead == '#') ADVANCE(242); if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(52); if (lookahead == '+') ADVANCE(200); if (lookahead == '-') ADVANCE(203); - if (lookahead == ':') ADVANCE(211); - if (lookahead == ';') ADVANCE(53); if (lookahead == '<') ADVANCE(183); if (lookahead == '=') ADVANCE(174); if (lookahead == '>') ADVANCE(187); if (lookahead == '?') ADVANCE(209); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') SKIP(94) - if (lookahead == 'e') ADVANCE(61); - if (lookahead == 'i') ADVANCE(60); + if (lookahead == '\\') SKIP(96) + if (lookahead == ']') ADVANCE(165); if (lookahead == '|') ADVANCE(62); if (lookahead == '\t' || lookahead == '\n' || @@ -2418,7 +2418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{') ADVANCE(220); - if (lookahead == '\\') ADVANCE(86); + if (lookahead == '\\') ADVANCE(87); if (lookahead == '`') ADVANCE(238); if (lookahead == '}') ADVANCE(155); if (lookahead == '\t' || @@ -2444,7 +2444,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{') ADVANCE(220); - if (lookahead == '\\') ADVANCE(87); + if (lookahead == '\\') ADVANCE(85); if (lookahead == '`') ADVANCE(238); if (lookahead == '}') ADVANCE(155); if (lookahead == '\t' || @@ -2575,7 +2575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(222); if (lookahead == '#') ADVANCE(223); if (lookahead == '$') ADVANCE(219); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\\') ADVANCE(104); if (lookahead == '`') ADVANCE(238); if (lookahead == '\t' || lookahead == '\n' || @@ -2597,8 +2597,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(209); if (lookahead == '@') ADVANCE(254); if (lookahead == '[') ADVANCE(163); - if (lookahead == '\\') SKIP(104) + if (lookahead == '\\') SKIP(102) if (lookahead == '_') ADVANCE(261); + if (lookahead == '}') ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2813,21 +2814,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(7) + lookahead == ' ') SKIP(21) if (lookahead != 0) ADVANCE(268); END_STATE(); case 82: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(30) + lookahead == ' ') SKIP(7) + if (lookahead != 0) ADVANCE(268); END_STATE(); case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') SKIP(30) END_STATE(); case 84: if (lookahead == '\t' || @@ -2839,21 +2840,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(25) + lookahead == ' ') SKIP(36) if (lookahead != 0) ADVANCE(268); END_STATE(); case 86: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(35) + lookahead == ' ') SKIP(25) if (lookahead != 0) ADVANCE(268); END_STATE(); case 87: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(36) + lookahead == ' ') SKIP(35) if (lookahead != 0) ADVANCE(268); END_STATE(); case 88: @@ -2900,19 +2901,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) + lookahead == ' ') SKIP(32) END_STATE(); case 95: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(32) + lookahead == ' ') SKIP(33) END_STATE(); case 96: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(33) + lookahead == ' ') SKIP(34) END_STATE(); case 97: if (lookahead == '\t' || @@ -2951,21 +2952,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(225); - if (lookahead != 0) ADVANCE(227); + lookahead == ' ') SKIP(43) END_STATE(); case 103: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(226); + lookahead == ' ') ADVANCE(225); if (lookahead != 0) ADVANCE(227); END_STATE(); case 104: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(43) + lookahead == ' ') ADVANCE(226); + if (lookahead != 0) ADVANCE(227); END_STATE(); case 105: if (lookahead == '\t' || @@ -2991,34 +2992,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(268); END_STATE(); case 109: - if (eof) ADVANCE(120); - if (lookahead == '\n') ADVANCE(121); - if (lookahead == '"') ADVANCE(222); - if (lookahead == '#') ADVANCE(242); - if (lookahead == '$') ADVANCE(218); - if (lookahead == '&') ADVANCE(272); - if (lookahead == '\'') ADVANCE(46); - if (lookahead == ')') ADVANCE(150); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(180); - if (lookahead == '>') ADVANCE(185); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(220); - if (lookahead == '\\') ADVANCE(67); - if (lookahead == '`') ADVANCE(238); - if (lookahead == '|') ADVANCE(148); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(109) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); - if (lookahead != 0 && - lookahead != '(') ADVANCE(268); - END_STATE(); - case 110: if (eof) ADVANCE(120); if (lookahead == '\n') ADVANCE(122); if (lookahead == '!') ADVANCE(159); @@ -3042,12 +3015,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(110) + lookahead == ' ') SKIP(109) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(251); END_STATE(); - case 111: + case 110: if (eof) ADVANCE(120); if (lookahead == '\n') ADVANCE(122); if (lookahead == '#') ADVANCE(242); @@ -3064,9 +3037,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(238); if (lookahead == 'e') ADVANCE(61); if (lookahead == '|') ADVANCE(148); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(110) + END_STATE(); + case 111: + if (eof) ADVANCE(120); + if (lookahead == '\n') ADVANCE(125); + if (lookahead == '"') ADVANCE(222); + if (lookahead == '#') ADVANCE(242); + if (lookahead == '$') ADVANCE(218); + if (lookahead == '&') ADVANCE(272); + if (lookahead == '\'') ADVANCE(46); + if (lookahead == ')') ADVANCE(150); + if (lookahead == ';') ADVANCE(142); + if (lookahead == '<') ADVANCE(180); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(220); + if (lookahead == '\\') ADVANCE(68); + if (lookahead == '`') ADVANCE(238); + if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(111) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(246); + if (lookahead != 0 && + lookahead != '(') ADVANCE(268); END_STATE(); case 112: if (eof) ADVANCE(120); @@ -3167,7 +3168,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 115: if (eof) ADVANCE(120); - if (lookahead == '\n') ADVANCE(133); + if (lookahead == '\n') ADVANCE(132); if (lookahead == '"') ADVANCE(222); if (lookahead == '#') ADVANCE(242); if (lookahead == '$') ADVANCE(218); @@ -3181,7 +3182,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ']' || lookahead == '{' || lookahead == '}') ADVANCE(220); - if (lookahead == '\\') ADVANCE(77); + if (lookahead == '\\') ADVANCE(76); if (lookahead == '`') ADVANCE(238); if (lookahead == '|') ADVANCE(148); if (lookahead == '\t' || @@ -3246,14 +3247,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(110) + lookahead == ' ') SKIP(109) END_STATE(); case 119: if (eof) ADVANCE(120); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(111) + lookahead == ' ') SKIP(110) END_STATE(); case 120: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -3276,7 +3277,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(124); if (lookahead == '-') ADVANCE(267); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '\\') ADVANCE(82); END_STATE(); case 125: ACCEPT_TOKEN(anon_sym_LF); @@ -3965,7 +3966,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(258); if (lookahead == '?') ADVANCE(209); if (lookahead == '@') ADVANCE(254); - if (lookahead == '\\') ADVANCE(102); + if (lookahead == '\\') ADVANCE(103); if (lookahead == '_') ADVANCE(261); if (lookahead == '\t' || lookahead == '\n' || @@ -3983,7 +3984,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(222); if (lookahead == '#') ADVANCE(223); if (lookahead == '$') ADVANCE(219); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\\') ADVANCE(104); if (lookahead == '`') ADVANCE(238); if (lookahead == '\t' || lookahead == '\n' || @@ -4759,8 +4760,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 117, .external_lex_state = 2}, [5] = {.lex_state = 117, .external_lex_state = 2}, [6] = {.lex_state = 117, .external_lex_state = 2}, - [7] = {.lex_state = 23, .external_lex_state = 2}, - [8] = {.lex_state = 117, .external_lex_state = 2}, + [7] = {.lex_state = 117, .external_lex_state = 2}, + [8] = {.lex_state = 23, .external_lex_state = 2}, [9] = {.lex_state = 23, .external_lex_state = 2}, [10] = {.lex_state = 117, .external_lex_state = 2}, [11] = {.lex_state = 23, .external_lex_state = 2}, @@ -4783,17 +4784,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 117, .external_lex_state = 2}, [29] = {.lex_state = 117, .external_lex_state = 2}, [30] = {.lex_state = 117, .external_lex_state = 2}, - [31] = {.lex_state = 117, .external_lex_state = 2}, + [31] = {.lex_state = 24, .external_lex_state = 3}, [32] = {.lex_state = 117, .external_lex_state = 2}, [33] = {.lex_state = 117, .external_lex_state = 2}, - [34] = {.lex_state = 24, .external_lex_state = 3}, + [34] = {.lex_state = 117, .external_lex_state = 2}, [35] = {.lex_state = 117, .external_lex_state = 2}, [36] = {.lex_state = 117, .external_lex_state = 2}, [37] = {.lex_state = 117, .external_lex_state = 2}, [38] = {.lex_state = 117, .external_lex_state = 2}, [39] = {.lex_state = 117, .external_lex_state = 2}, [40] = {.lex_state = 117, .external_lex_state = 2}, - [41] = {.lex_state = 117, .external_lex_state = 2}, + [41] = {.lex_state = 24, .external_lex_state = 3}, [42] = {.lex_state = 117, .external_lex_state = 2}, [43] = {.lex_state = 117, .external_lex_state = 2}, [44] = {.lex_state = 117, .external_lex_state = 2}, @@ -4802,7 +4803,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [47] = {.lex_state = 117, .external_lex_state = 2}, [48] = {.lex_state = 117, .external_lex_state = 2}, [49] = {.lex_state = 117, .external_lex_state = 2}, - [50] = {.lex_state = 24, .external_lex_state = 3}, + [50] = {.lex_state = 117, .external_lex_state = 2}, [51] = {.lex_state = 117, .external_lex_state = 2}, [52] = {.lex_state = 117, .external_lex_state = 2}, [53] = {.lex_state = 117, .external_lex_state = 2}, @@ -4812,14 +4813,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 117, .external_lex_state = 2}, [58] = {.lex_state = 24, .external_lex_state = 3}, [59] = {.lex_state = 117, .external_lex_state = 2}, - [60] = {.lex_state = 24, .external_lex_state = 3}, + [60] = {.lex_state = 117, .external_lex_state = 2}, [61] = {.lex_state = 117, .external_lex_state = 2}, [62] = {.lex_state = 117, .external_lex_state = 2}, [63] = {.lex_state = 117, .external_lex_state = 2}, [64] = {.lex_state = 117, .external_lex_state = 2}, [65] = {.lex_state = 117, .external_lex_state = 2}, [66] = {.lex_state = 117, .external_lex_state = 2}, - [67] = {.lex_state = 24, .external_lex_state = 3}, + [67] = {.lex_state = 117, .external_lex_state = 2}, [68] = {.lex_state = 117, .external_lex_state = 2}, [69] = {.lex_state = 117, .external_lex_state = 2}, [70] = {.lex_state = 117, .external_lex_state = 2}, @@ -4852,13 +4853,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 117, .external_lex_state = 2}, [98] = {.lex_state = 117, .external_lex_state = 2}, [99] = {.lex_state = 117, .external_lex_state = 2}, - [100] = {.lex_state = 117, .external_lex_state = 2}, + [100] = {.lex_state = 24, .external_lex_state = 3}, [101] = {.lex_state = 117, .external_lex_state = 2}, [102] = {.lex_state = 117, .external_lex_state = 2}, [103] = {.lex_state = 117, .external_lex_state = 2}, [104] = {.lex_state = 117, .external_lex_state = 2}, [105] = {.lex_state = 117, .external_lex_state = 2}, - [106] = {.lex_state = 117, .external_lex_state = 2}, + [106] = {.lex_state = 24, .external_lex_state = 3}, [107] = {.lex_state = 117, .external_lex_state = 2}, [108] = {.lex_state = 117, .external_lex_state = 2}, [109] = {.lex_state = 117, .external_lex_state = 2}, @@ -4880,85 +4881,85 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 117, .external_lex_state = 2}, [126] = {.lex_state = 117, .external_lex_state = 2}, [127] = {.lex_state = 117, .external_lex_state = 4}, - [128] = {.lex_state = 109, .external_lex_state = 5}, - [129] = {.lex_state = 8, .external_lex_state = 5}, - [130] = {.lex_state = 8, .external_lex_state = 5}, - [131] = {.lex_state = 8, .external_lex_state = 5}, - [132] = {.lex_state = 109, .external_lex_state = 5}, - [133] = {.lex_state = 109, .external_lex_state = 5}, - [134] = {.lex_state = 109, .external_lex_state = 5}, - [135] = {.lex_state = 109, .external_lex_state = 5}, - [136] = {.lex_state = 109, .external_lex_state = 5}, + [128] = {.lex_state = 1, .external_lex_state = 5}, + [129] = {.lex_state = 111, .external_lex_state = 5}, + [130] = {.lex_state = 1, .external_lex_state = 5}, + [131] = {.lex_state = 111, .external_lex_state = 5}, + [132] = {.lex_state = 1, .external_lex_state = 5}, + [133] = {.lex_state = 111, .external_lex_state = 5}, + [134] = {.lex_state = 111, .external_lex_state = 5}, + [135] = {.lex_state = 111, .external_lex_state = 5}, + [136] = {.lex_state = 111, .external_lex_state = 5}, [137] = {.lex_state = 112, .external_lex_state = 6}, - [138] = {.lex_state = 109, .external_lex_state = 5}, - [139] = {.lex_state = 23, .external_lex_state = 4}, - [140] = {.lex_state = 23, .external_lex_state = 4}, - [141] = {.lex_state = 109, .external_lex_state = 5}, - [142] = {.lex_state = 10, .external_lex_state = 6}, - [143] = {.lex_state = 112, .external_lex_state = 6}, - [144] = {.lex_state = 113, .external_lex_state = 6}, - [145] = {.lex_state = 12, .external_lex_state = 5}, - [146] = {.lex_state = 117, .external_lex_state = 4}, - [147] = {.lex_state = 13, .external_lex_state = 6}, - [148] = {.lex_state = 24, .external_lex_state = 7}, - [149] = {.lex_state = 113, .external_lex_state = 6}, - [150] = {.lex_state = 114, .external_lex_state = 5}, - [151] = {.lex_state = 113, .external_lex_state = 6}, - [152] = {.lex_state = 117, .external_lex_state = 4}, - [153] = {.lex_state = 113, .external_lex_state = 6}, - [154] = {.lex_state = 113, .external_lex_state = 6}, + [138] = {.lex_state = 23, .external_lex_state = 4}, + [139] = {.lex_state = 112, .external_lex_state = 6}, + [140] = {.lex_state = 10, .external_lex_state = 6}, + [141] = {.lex_state = 111, .external_lex_state = 5}, + [142] = {.lex_state = 111, .external_lex_state = 5}, + [143] = {.lex_state = 23, .external_lex_state = 4}, + [144] = {.lex_state = 117, .external_lex_state = 4}, + [145] = {.lex_state = 113, .external_lex_state = 6}, + [146] = {.lex_state = 24, .external_lex_state = 7}, + [147] = {.lex_state = 12, .external_lex_state = 5}, + [148] = {.lex_state = 13, .external_lex_state = 6}, + [149] = {.lex_state = 117, .external_lex_state = 4}, + [150] = {.lex_state = 113, .external_lex_state = 6}, + [151] = {.lex_state = 114, .external_lex_state = 5}, + [152] = {.lex_state = 114, .external_lex_state = 5}, + [153] = {.lex_state = 117, .external_lex_state = 4}, + [154] = {.lex_state = 114, .external_lex_state = 5}, [155] = {.lex_state = 117, .external_lex_state = 4}, [156] = {.lex_state = 113, .external_lex_state = 6}, - [157] = {.lex_state = 13, .external_lex_state = 6}, - [158] = {.lex_state = 113, .external_lex_state = 6}, - [159] = {.lex_state = 114, .external_lex_state = 5}, - [160] = {.lex_state = 12, .external_lex_state = 5}, - [161] = {.lex_state = 117, .external_lex_state = 4}, - [162] = {.lex_state = 117, .external_lex_state = 2}, - [163] = {.lex_state = 114, .external_lex_state = 5}, - [164] = {.lex_state = 117, .external_lex_state = 4}, - [165] = {.lex_state = 117, .external_lex_state = 2}, - [166] = {.lex_state = 113, .external_lex_state = 6}, + [157] = {.lex_state = 12, .external_lex_state = 5}, + [158] = {.lex_state = 13, .external_lex_state = 6}, + [159] = {.lex_state = 113, .external_lex_state = 6}, + [160] = {.lex_state = 117, .external_lex_state = 4}, + [161] = {.lex_state = 113, .external_lex_state = 6}, + [162] = {.lex_state = 113, .external_lex_state = 6}, + [163] = {.lex_state = 13, .external_lex_state = 6}, + [164] = {.lex_state = 114, .external_lex_state = 5}, + [165] = {.lex_state = 113, .external_lex_state = 6}, + [166] = {.lex_state = 117, .external_lex_state = 4}, [167] = {.lex_state = 113, .external_lex_state = 6}, - [168] = {.lex_state = 13, .external_lex_state = 6}, - [169] = {.lex_state = 13, .external_lex_state = 6}, - [170] = {.lex_state = 113, .external_lex_state = 6}, - [171] = {.lex_state = 117, .external_lex_state = 4}, - [172] = {.lex_state = 114, .external_lex_state = 5}, - [173] = {.lex_state = 13, .external_lex_state = 6}, - [174] = {.lex_state = 8, .external_lex_state = 6}, - [175] = {.lex_state = 117, .external_lex_state = 4}, - [176] = {.lex_state = 109, .external_lex_state = 6}, - [177] = {.lex_state = 12, .external_lex_state = 6}, - [178] = {.lex_state = 113, .external_lex_state = 6}, - [179] = {.lex_state = 113, .external_lex_state = 6}, - [180] = {.lex_state = 113, .external_lex_state = 6}, - [181] = {.lex_state = 109, .external_lex_state = 6}, - [182] = {.lex_state = 8, .external_lex_state = 6}, - [183] = {.lex_state = 109, .external_lex_state = 6}, - [184] = {.lex_state = 117, .external_lex_state = 4}, - [185] = {.lex_state = 113, .external_lex_state = 6}, - [186] = {.lex_state = 109, .external_lex_state = 6}, - [187] = {.lex_state = 8, .external_lex_state = 6}, + [168] = {.lex_state = 113, .external_lex_state = 6}, + [169] = {.lex_state = 117, .external_lex_state = 2}, + [170] = {.lex_state = 13, .external_lex_state = 6}, + [171] = {.lex_state = 113, .external_lex_state = 6}, + [172] = {.lex_state = 13, .external_lex_state = 6}, + [173] = {.lex_state = 117, .external_lex_state = 2}, + [174] = {.lex_state = 113, .external_lex_state = 6}, + [175] = {.lex_state = 113, .external_lex_state = 6}, + [176] = {.lex_state = 113, .external_lex_state = 6}, + [177] = {.lex_state = 114, .external_lex_state = 6}, + [178] = {.lex_state = 1, .external_lex_state = 6}, + [179] = {.lex_state = 1, .external_lex_state = 6}, + [180] = {.lex_state = 111, .external_lex_state = 6}, + [181] = {.lex_state = 1, .external_lex_state = 6}, + [182] = {.lex_state = 111, .external_lex_state = 6}, + [183] = {.lex_state = 111, .external_lex_state = 6}, + [184] = {.lex_state = 111, .external_lex_state = 6}, + [185] = {.lex_state = 111, .external_lex_state = 6}, + [186] = {.lex_state = 111, .external_lex_state = 6}, + [187] = {.lex_state = 117, .external_lex_state = 4}, [188] = {.lex_state = 114, .external_lex_state = 6}, [189] = {.lex_state = 117, .external_lex_state = 4}, - [190] = {.lex_state = 109, .external_lex_state = 6}, - [191] = {.lex_state = 109, .external_lex_state = 6}, - [192] = {.lex_state = 114, .external_lex_state = 6}, - [193] = {.lex_state = 109, .external_lex_state = 6}, - [194] = {.lex_state = 23, .external_lex_state = 2}, - [195] = {.lex_state = 37, .external_lex_state = 2}, - [196] = {.lex_state = 117, .external_lex_state = 2}, - [197] = {.lex_state = 23, .external_lex_state = 2}, - [198] = {.lex_state = 37, .external_lex_state = 2}, - [199] = {.lex_state = 117, .external_lex_state = 2}, - [200] = {.lex_state = 37, .external_lex_state = 2}, - [201] = {.lex_state = 117, .external_lex_state = 2}, + [190] = {.lex_state = 12, .external_lex_state = 6}, + [191] = {.lex_state = 113, .external_lex_state = 6}, + [192] = {.lex_state = 117, .external_lex_state = 4}, + [193] = {.lex_state = 117, .external_lex_state = 2}, + [194] = {.lex_state = 37, .external_lex_state = 2}, + [195] = {.lex_state = 23, .external_lex_state = 2}, + [196] = {.lex_state = 37, .external_lex_state = 2}, + [197] = {.lex_state = 117, .external_lex_state = 2}, + [198] = {.lex_state = 117, .external_lex_state = 2}, + [199] = {.lex_state = 111, .external_lex_state = 6}, + [200] = {.lex_state = 23, .external_lex_state = 2}, + [201] = {.lex_state = 23, .external_lex_state = 2}, [202] = {.lex_state = 37, .external_lex_state = 2}, - [203] = {.lex_state = 109, .external_lex_state = 6}, - [204] = {.lex_state = 117, .external_lex_state = 2}, + [203] = {.lex_state = 117, .external_lex_state = 2}, + [204] = {.lex_state = 37, .external_lex_state = 2}, [205] = {.lex_state = 23, .external_lex_state = 2}, - [206] = {.lex_state = 23, .external_lex_state = 2}, + [206] = {.lex_state = 111, .external_lex_state = 6}, [207] = {.lex_state = 117, .external_lex_state = 2}, [208] = {.lex_state = 117, .external_lex_state = 2}, [209] = {.lex_state = 117, .external_lex_state = 2}, @@ -4971,1724 +4972,1724 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [216] = {.lex_state = 117, .external_lex_state = 2}, [217] = {.lex_state = 117, .external_lex_state = 2}, [218] = {.lex_state = 117, .external_lex_state = 2}, - [219] = {.lex_state = 15, .external_lex_state = 5}, + [219] = {.lex_state = 115, .external_lex_state = 5}, [220] = {.lex_state = 115, .external_lex_state = 5}, - [221] = {.lex_state = 113, .external_lex_state = 8}, - [222] = {.lex_state = 115, .external_lex_state = 5}, - [223] = {.lex_state = 13, .external_lex_state = 8}, - [224] = {.lex_state = 113, .external_lex_state = 8}, - [225] = {.lex_state = 115, .external_lex_state = 5}, + [221] = {.lex_state = 115, .external_lex_state = 5}, + [222] = {.lex_state = 113, .external_lex_state = 8}, + [223] = {.lex_state = 115, .external_lex_state = 5}, + [224] = {.lex_state = 115, .external_lex_state = 5}, + [225] = {.lex_state = 16, .external_lex_state = 5}, [226] = {.lex_state = 115, .external_lex_state = 5}, [227] = {.lex_state = 115, .external_lex_state = 5}, [228] = {.lex_state = 115, .external_lex_state = 5}, - [229] = {.lex_state = 15, .external_lex_state = 5}, - [230] = {.lex_state = 115, .external_lex_state = 5}, - [231] = {.lex_state = 15, .external_lex_state = 5}, - [232] = {.lex_state = 115, .external_lex_state = 5}, - [233] = {.lex_state = 15, .external_lex_state = 5}, - [234] = {.lex_state = 109, .external_lex_state = 9}, - [235] = {.lex_state = 8, .external_lex_state = 9}, + [229] = {.lex_state = 16, .external_lex_state = 5}, + [230] = {.lex_state = 13, .external_lex_state = 8}, + [231] = {.lex_state = 113, .external_lex_state = 8}, + [232] = {.lex_state = 16, .external_lex_state = 5}, + [233] = {.lex_state = 16, .external_lex_state = 5}, + [234] = {.lex_state = 115, .external_lex_state = 5}, + [235] = {.lex_state = 13, .external_lex_state = 8}, [236] = {.lex_state = 115, .external_lex_state = 5}, [237] = {.lex_state = 115, .external_lex_state = 5}, - [238] = {.lex_state = 113, .external_lex_state = 8}, - [239] = {.lex_state = 13, .external_lex_state = 8}, - [240] = {.lex_state = 13, .external_lex_state = 8}, + [238] = {.lex_state = 13, .external_lex_state = 8}, + [239] = {.lex_state = 111, .external_lex_state = 9}, + [240] = {.lex_state = 111, .external_lex_state = 9}, [241] = {.lex_state = 113, .external_lex_state = 8}, - [242] = {.lex_state = 8, .external_lex_state = 9}, - [243] = {.lex_state = 113, .external_lex_state = 8}, - [244] = {.lex_state = 109, .external_lex_state = 9}, - [245] = {.lex_state = 8, .external_lex_state = 9}, + [242] = {.lex_state = 113, .external_lex_state = 8}, + [243] = {.lex_state = 1, .external_lex_state = 9}, + [244] = {.lex_state = 1, .external_lex_state = 9}, + [245] = {.lex_state = 113, .external_lex_state = 8}, [246] = {.lex_state = 113, .external_lex_state = 8}, - [247] = {.lex_state = 109, .external_lex_state = 9}, - [248] = {.lex_state = 109, .external_lex_state = 9}, - [249] = {.lex_state = 113, .external_lex_state = 8}, - [250] = {.lex_state = 115, .external_lex_state = 5}, - [251] = {.lex_state = 109, .external_lex_state = 9}, - [252] = {.lex_state = 8, .external_lex_state = 9}, - [253] = {.lex_state = 109, .external_lex_state = 9}, - [254] = {.lex_state = 13, .external_lex_state = 8}, + [247] = {.lex_state = 111, .external_lex_state = 9}, + [248] = {.lex_state = 115, .external_lex_state = 5}, + [249] = {.lex_state = 111, .external_lex_state = 9}, + [250] = {.lex_state = 111, .external_lex_state = 9}, + [251] = {.lex_state = 113, .external_lex_state = 8}, + [252] = {.lex_state = 13, .external_lex_state = 8}, + [253] = {.lex_state = 115, .external_lex_state = 5}, + [254] = {.lex_state = 113, .external_lex_state = 8}, [255] = {.lex_state = 115, .external_lex_state = 5}, - [256] = {.lex_state = 13, .external_lex_state = 8}, - [257] = {.lex_state = 113, .external_lex_state = 8}, - [258] = {.lex_state = 8, .external_lex_state = 9}, - [259] = {.lex_state = 115, .external_lex_state = 5}, - [260] = {.lex_state = 113, .external_lex_state = 8}, - [261] = {.lex_state = 113, .external_lex_state = 8}, - [262] = {.lex_state = 113, .external_lex_state = 8}, - [263] = {.lex_state = 13, .external_lex_state = 8}, + [256] = {.lex_state = 111, .external_lex_state = 9}, + [257] = {.lex_state = 115, .external_lex_state = 5}, + [258] = {.lex_state = 115, .external_lex_state = 5}, + [259] = {.lex_state = 113, .external_lex_state = 8}, + [260] = {.lex_state = 111, .external_lex_state = 9}, + [261] = {.lex_state = 13, .external_lex_state = 8}, + [262] = {.lex_state = 13, .external_lex_state = 8}, + [263] = {.lex_state = 113, .external_lex_state = 8}, [264] = {.lex_state = 113, .external_lex_state = 8}, - [265] = {.lex_state = 115, .external_lex_state = 5}, - [266] = {.lex_state = 115, .external_lex_state = 5}, - [267] = {.lex_state = 115, .external_lex_state = 5}, + [265] = {.lex_state = 111, .external_lex_state = 9}, + [266] = {.lex_state = 113, .external_lex_state = 8}, + [267] = {.lex_state = 111, .external_lex_state = 9}, [268] = {.lex_state = 115, .external_lex_state = 5}, - [269] = {.lex_state = 13, .external_lex_state = 8}, - [270] = {.lex_state = 115, .external_lex_state = 5}, - [271] = {.lex_state = 113, .external_lex_state = 8}, - [272] = {.lex_state = 113, .external_lex_state = 8}, - [273] = {.lex_state = 109, .external_lex_state = 9}, - [274] = {.lex_state = 109, .external_lex_state = 9}, - [275] = {.lex_state = 109, .external_lex_state = 9}, - [276] = {.lex_state = 109, .external_lex_state = 9}, - [277] = {.lex_state = 110, .external_lex_state = 6}, - [278] = {.lex_state = 113, .external_lex_state = 6}, - [279] = {.lex_state = 115, .external_lex_state = 9}, - [280] = {.lex_state = 115, .external_lex_state = 9}, - [281] = {.lex_state = 115, .external_lex_state = 9}, - [282] = {.lex_state = 109, .external_lex_state = 9}, - [283] = {.lex_state = 109, .external_lex_state = 9}, - [284] = {.lex_state = 109, .external_lex_state = 9}, - [285] = {.lex_state = 109, .external_lex_state = 9}, - [286] = {.lex_state = 109, .external_lex_state = 9}, - [287] = {.lex_state = 109, .external_lex_state = 9}, - [288] = {.lex_state = 109, .external_lex_state = 9}, - [289] = {.lex_state = 109, .external_lex_state = 9}, - [290] = {.lex_state = 109, .external_lex_state = 8}, - [291] = {.lex_state = 109, .external_lex_state = 8}, - [292] = {.lex_state = 109, .external_lex_state = 9}, - [293] = {.lex_state = 109, .external_lex_state = 9}, + [269] = {.lex_state = 1, .external_lex_state = 9}, + [270] = {.lex_state = 111, .external_lex_state = 9}, + [271] = {.lex_state = 115, .external_lex_state = 5}, + [272] = {.lex_state = 1, .external_lex_state = 9}, + [273] = {.lex_state = 113, .external_lex_state = 8}, + [274] = {.lex_state = 113, .external_lex_state = 8}, + [275] = {.lex_state = 1, .external_lex_state = 9}, + [276] = {.lex_state = 13, .external_lex_state = 8}, + [277] = {.lex_state = 111, .external_lex_state = 9}, + [278] = {.lex_state = 1, .external_lex_state = 9}, + [279] = {.lex_state = 113, .external_lex_state = 8}, + [280] = {.lex_state = 113, .external_lex_state = 8}, + [281] = {.lex_state = 113, .external_lex_state = 8}, + [282] = {.lex_state = 113, .external_lex_state = 8}, + [283] = {.lex_state = 113, .external_lex_state = 8}, + [284] = {.lex_state = 13, .external_lex_state = 8}, + [285] = {.lex_state = 113, .external_lex_state = 8}, + [286] = {.lex_state = 113, .external_lex_state = 8}, + [287] = {.lex_state = 113, .external_lex_state = 8}, + [288] = {.lex_state = 1, .external_lex_state = 9}, + [289] = {.lex_state = 13, .external_lex_state = 8}, + [290] = {.lex_state = 13, .external_lex_state = 8}, + [291] = {.lex_state = 113, .external_lex_state = 8}, + [292] = {.lex_state = 113, .external_lex_state = 8}, + [293] = {.lex_state = 113, .external_lex_state = 8}, [294] = {.lex_state = 113, .external_lex_state = 8}, [295] = {.lex_state = 113, .external_lex_state = 8}, - [296] = {.lex_state = 109, .external_lex_state = 8}, - [297] = {.lex_state = 109, .external_lex_state = 8}, - [298] = {.lex_state = 109, .external_lex_state = 9}, - [299] = {.lex_state = 8, .external_lex_state = 5}, - [300] = {.lex_state = 113, .external_lex_state = 8}, - [301] = {.lex_state = 113, .external_lex_state = 6}, - [302] = {.lex_state = 109, .external_lex_state = 5}, - [303] = {.lex_state = 109, .external_lex_state = 8}, + [296] = {.lex_state = 113, .external_lex_state = 8}, + [297] = {.lex_state = 13, .external_lex_state = 8}, + [298] = {.lex_state = 1, .external_lex_state = 9}, + [299] = {.lex_state = 1, .external_lex_state = 9}, + [300] = {.lex_state = 1, .external_lex_state = 9}, + [301] = {.lex_state = 13, .external_lex_state = 8}, + [302] = {.lex_state = 113, .external_lex_state = 8}, + [303] = {.lex_state = 113, .external_lex_state = 8}, [304] = {.lex_state = 113, .external_lex_state = 8}, - [305] = {.lex_state = 109, .external_lex_state = 9}, - [306] = {.lex_state = 109, .external_lex_state = 9}, - [307] = {.lex_state = 109, .external_lex_state = 9}, - [308] = {.lex_state = 109, .external_lex_state = 9}, - [309] = {.lex_state = 109, .external_lex_state = 9}, - [310] = {.lex_state = 109, .external_lex_state = 9}, - [311] = {.lex_state = 109, .external_lex_state = 9}, - [312] = {.lex_state = 109, .external_lex_state = 9}, - [313] = {.lex_state = 109, .external_lex_state = 9}, - [314] = {.lex_state = 109, .external_lex_state = 9}, - [315] = {.lex_state = 109, .external_lex_state = 9}, - [316] = {.lex_state = 109, .external_lex_state = 9}, - [317] = {.lex_state = 109, .external_lex_state = 9}, - [318] = {.lex_state = 109, .external_lex_state = 9}, - [319] = {.lex_state = 109, .external_lex_state = 5}, - [320] = {.lex_state = 109, .external_lex_state = 9}, - [321] = {.lex_state = 109, .external_lex_state = 9}, - [322] = {.lex_state = 109, .external_lex_state = 9}, - [323] = {.lex_state = 109, .external_lex_state = 9}, - [324] = {.lex_state = 109, .external_lex_state = 9}, - [325] = {.lex_state = 109, .external_lex_state = 9}, - [326] = {.lex_state = 109, .external_lex_state = 8}, - [327] = {.lex_state = 109, .external_lex_state = 9}, - [328] = {.lex_state = 109, .external_lex_state = 9}, - [329] = {.lex_state = 15, .external_lex_state = 9}, - [330] = {.lex_state = 109, .external_lex_state = 9}, - [331] = {.lex_state = 109, .external_lex_state = 9}, - [332] = {.lex_state = 109, .external_lex_state = 9}, + [305] = {.lex_state = 113, .external_lex_state = 8}, + [306] = {.lex_state = 111, .external_lex_state = 9}, + [307] = {.lex_state = 1, .external_lex_state = 9}, + [308] = {.lex_state = 13, .external_lex_state = 8}, + [309] = {.lex_state = 13, .external_lex_state = 8}, + [310] = {.lex_state = 109, .external_lex_state = 6}, + [311] = {.lex_state = 111, .external_lex_state = 5}, + [312] = {.lex_state = 115, .external_lex_state = 9}, + [313] = {.lex_state = 113, .external_lex_state = 8}, + [314] = {.lex_state = 115, .external_lex_state = 9}, + [315] = {.lex_state = 13, .external_lex_state = 6}, + [316] = {.lex_state = 115, .external_lex_state = 9}, + [317] = {.lex_state = 113, .external_lex_state = 8}, + [318] = {.lex_state = 13, .external_lex_state = 8}, + [319] = {.lex_state = 111, .external_lex_state = 8}, + [320] = {.lex_state = 113, .external_lex_state = 8}, + [321] = {.lex_state = 1, .external_lex_state = 8}, + [322] = {.lex_state = 113, .external_lex_state = 8}, + [323] = {.lex_state = 111, .external_lex_state = 5}, + [324] = {.lex_state = 113, .external_lex_state = 8}, + [325] = {.lex_state = 113, .external_lex_state = 8}, + [326] = {.lex_state = 113, .external_lex_state = 8}, + [327] = {.lex_state = 113, .external_lex_state = 8}, + [328] = {.lex_state = 113, .external_lex_state = 8}, + [329] = {.lex_state = 113, .external_lex_state = 8}, + [330] = {.lex_state = 113, .external_lex_state = 8}, + [331] = {.lex_state = 113, .external_lex_state = 8}, + [332] = {.lex_state = 113, .external_lex_state = 8}, [333] = {.lex_state = 113, .external_lex_state = 8}, - [334] = {.lex_state = 113, .external_lex_state = 8}, + [334] = {.lex_state = 111, .external_lex_state = 5}, [335] = {.lex_state = 113, .external_lex_state = 8}, - [336] = {.lex_state = 109, .external_lex_state = 9}, - [337] = {.lex_state = 109, .external_lex_state = 9}, - [338] = {.lex_state = 113, .external_lex_state = 8}, - [339] = {.lex_state = 109, .external_lex_state = 9}, - [340] = {.lex_state = 109, .external_lex_state = 9}, - [341] = {.lex_state = 109, .external_lex_state = 9}, - [342] = {.lex_state = 109, .external_lex_state = 9}, - [343] = {.lex_state = 109, .external_lex_state = 9}, - [344] = {.lex_state = 109, .external_lex_state = 9}, - [345] = {.lex_state = 109, .external_lex_state = 9}, - [346] = {.lex_state = 109, .external_lex_state = 9}, - [347] = {.lex_state = 109, .external_lex_state = 9}, - [348] = {.lex_state = 109, .external_lex_state = 9}, - [349] = {.lex_state = 109, .external_lex_state = 9}, - [350] = {.lex_state = 109, .external_lex_state = 9}, - [351] = {.lex_state = 113, .external_lex_state = 8}, - [352] = {.lex_state = 109, .external_lex_state = 5}, - [353] = {.lex_state = 113, .external_lex_state = 8}, - [354] = {.lex_state = 109, .external_lex_state = 5}, - [355] = {.lex_state = 113, .external_lex_state = 8}, - [356] = {.lex_state = 109, .external_lex_state = 8}, - [357] = {.lex_state = 115, .external_lex_state = 9}, - [358] = {.lex_state = 115, .external_lex_state = 9}, - [359] = {.lex_state = 113, .external_lex_state = 6}, - [360] = {.lex_state = 113, .external_lex_state = 6}, - [361] = {.lex_state = 115, .external_lex_state = 9}, - [362] = {.lex_state = 109, .external_lex_state = 5}, + [336] = {.lex_state = 111, .external_lex_state = 9}, + [337] = {.lex_state = 111, .external_lex_state = 9}, + [338] = {.lex_state = 13, .external_lex_state = 8}, + [339] = {.lex_state = 13, .external_lex_state = 6}, + [340] = {.lex_state = 1, .external_lex_state = 8}, + [341] = {.lex_state = 13, .external_lex_state = 8}, + [342] = {.lex_state = 13, .external_lex_state = 8}, + [343] = {.lex_state = 13, .external_lex_state = 8}, + [344] = {.lex_state = 113, .external_lex_state = 6}, + [345] = {.lex_state = 111, .external_lex_state = 9}, + [346] = {.lex_state = 111, .external_lex_state = 9}, + [347] = {.lex_state = 111, .external_lex_state = 9}, + [348] = {.lex_state = 13, .external_lex_state = 8}, + [349] = {.lex_state = 13, .external_lex_state = 6}, + [350] = {.lex_state = 111, .external_lex_state = 9}, + [351] = {.lex_state = 111, .external_lex_state = 9}, + [352] = {.lex_state = 111, .external_lex_state = 9}, + [353] = {.lex_state = 111, .external_lex_state = 9}, + [354] = {.lex_state = 111, .external_lex_state = 9}, + [355] = {.lex_state = 111, .external_lex_state = 9}, + [356] = {.lex_state = 111, .external_lex_state = 9}, + [357] = {.lex_state = 113, .external_lex_state = 8}, + [358] = {.lex_state = 113, .external_lex_state = 8}, + [359] = {.lex_state = 111, .external_lex_state = 9}, + [360] = {.lex_state = 113, .external_lex_state = 8}, + [361] = {.lex_state = 113, .external_lex_state = 8}, + [362] = {.lex_state = 111, .external_lex_state = 9}, [363] = {.lex_state = 113, .external_lex_state = 8}, - [364] = {.lex_state = 115, .external_lex_state = 9}, + [364] = {.lex_state = 111, .external_lex_state = 9}, [365] = {.lex_state = 113, .external_lex_state = 8}, [366] = {.lex_state = 113, .external_lex_state = 8}, - [367] = {.lex_state = 113, .external_lex_state = 8}, - [368] = {.lex_state = 113, .external_lex_state = 8}, - [369] = {.lex_state = 13, .external_lex_state = 8}, - [370] = {.lex_state = 13, .external_lex_state = 8}, - [371] = {.lex_state = 13, .external_lex_state = 8}, + [367] = {.lex_state = 111, .external_lex_state = 9}, + [368] = {.lex_state = 1, .external_lex_state = 8}, + [369] = {.lex_state = 1, .external_lex_state = 5}, + [370] = {.lex_state = 111, .external_lex_state = 9}, + [371] = {.lex_state = 111, .external_lex_state = 9}, [372] = {.lex_state = 13, .external_lex_state = 8}, [373] = {.lex_state = 13, .external_lex_state = 8}, - [374] = {.lex_state = 113, .external_lex_state = 8}, - [375] = {.lex_state = 113, .external_lex_state = 8}, - [376] = {.lex_state = 113, .external_lex_state = 8}, - [377] = {.lex_state = 113, .external_lex_state = 8}, - [378] = {.lex_state = 113, .external_lex_state = 8}, - [379] = {.lex_state = 113, .external_lex_state = 8}, - [380] = {.lex_state = 113, .external_lex_state = 8}, - [381] = {.lex_state = 13, .external_lex_state = 8}, - [382] = {.lex_state = 113, .external_lex_state = 8}, - [383] = {.lex_state = 113, .external_lex_state = 8}, - [384] = {.lex_state = 113, .external_lex_state = 8}, - [385] = {.lex_state = 113, .external_lex_state = 8}, - [386] = {.lex_state = 8, .external_lex_state = 9}, - [387] = {.lex_state = 8, .external_lex_state = 9}, - [388] = {.lex_state = 113, .external_lex_state = 8}, - [389] = {.lex_state = 113, .external_lex_state = 8}, - [390] = {.lex_state = 113, .external_lex_state = 8}, - [391] = {.lex_state = 113, .external_lex_state = 8}, - [392] = {.lex_state = 113, .external_lex_state = 8}, - [393] = {.lex_state = 8, .external_lex_state = 9}, - [394] = {.lex_state = 8, .external_lex_state = 9}, - [395] = {.lex_state = 8, .external_lex_state = 9}, - [396] = {.lex_state = 113, .external_lex_state = 8}, - [397] = {.lex_state = 113, .external_lex_state = 8}, - [398] = {.lex_state = 113, .external_lex_state = 8}, - [399] = {.lex_state = 13, .external_lex_state = 6}, - [400] = {.lex_state = 8, .external_lex_state = 9}, - [401] = {.lex_state = 113, .external_lex_state = 8}, - [402] = {.lex_state = 113, .external_lex_state = 8}, - [403] = {.lex_state = 113, .external_lex_state = 8}, - [404] = {.lex_state = 113, .external_lex_state = 8}, - [405] = {.lex_state = 113, .external_lex_state = 8}, - [406] = {.lex_state = 113, .external_lex_state = 8}, - [407] = {.lex_state = 13, .external_lex_state = 8}, - [408] = {.lex_state = 113, .external_lex_state = 8}, - [409] = {.lex_state = 13, .external_lex_state = 8}, - [410] = {.lex_state = 8, .external_lex_state = 8}, - [411] = {.lex_state = 13, .external_lex_state = 6}, - [412] = {.lex_state = 8, .external_lex_state = 8}, - [413] = {.lex_state = 113, .external_lex_state = 6}, - [414] = {.lex_state = 13, .external_lex_state = 8}, - [415] = {.lex_state = 13, .external_lex_state = 6}, - [416] = {.lex_state = 113, .external_lex_state = 6}, - [417] = {.lex_state = 113, .external_lex_state = 6}, - [418] = {.lex_state = 113, .external_lex_state = 8}, - [419] = {.lex_state = 113, .external_lex_state = 8}, - [420] = {.lex_state = 113, .external_lex_state = 8}, - [421] = {.lex_state = 113, .external_lex_state = 8}, - [422] = {.lex_state = 13, .external_lex_state = 8}, - [423] = {.lex_state = 13, .external_lex_state = 8}, - [424] = {.lex_state = 109, .external_lex_state = 5}, - [425] = {.lex_state = 109, .external_lex_state = 8}, - [426] = {.lex_state = 13, .external_lex_state = 8}, - [427] = {.lex_state = 8, .external_lex_state = 8}, - [428] = {.lex_state = 8, .external_lex_state = 5}, - [429] = {.lex_state = 13, .external_lex_state = 6}, - [430] = {.lex_state = 13, .external_lex_state = 8}, - [431] = {.lex_state = 13, .external_lex_state = 8}, - [432] = {.lex_state = 13, .external_lex_state = 8}, - [433] = {.lex_state = 13, .external_lex_state = 8}, - [434] = {.lex_state = 13, .external_lex_state = 8}, - [435] = {.lex_state = 13, .external_lex_state = 8}, - [436] = {.lex_state = 13, .external_lex_state = 8}, - [437] = {.lex_state = 13, .external_lex_state = 8}, - [438] = {.lex_state = 13, .external_lex_state = 8}, - [439] = {.lex_state = 13, .external_lex_state = 8}, - [440] = {.lex_state = 13, .external_lex_state = 8}, - [441] = {.lex_state = 113, .external_lex_state = 8}, - [442] = {.lex_state = 13, .external_lex_state = 8}, - [443] = {.lex_state = 13, .external_lex_state = 8}, - [444] = {.lex_state = 8, .external_lex_state = 9}, - [445] = {.lex_state = 113, .external_lex_state = 6}, - [446] = {.lex_state = 8, .external_lex_state = 9}, - [447] = {.lex_state = 15, .external_lex_state = 9}, - [448] = {.lex_state = 8, .external_lex_state = 5}, - [449] = {.lex_state = 15, .external_lex_state = 9}, - [450] = {.lex_state = 8, .external_lex_state = 9}, - [451] = {.lex_state = 8, .external_lex_state = 9}, - [452] = {.lex_state = 113, .external_lex_state = 8}, - [453] = {.lex_state = 8, .external_lex_state = 9}, - [454] = {.lex_state = 8, .external_lex_state = 9}, - [455] = {.lex_state = 115, .external_lex_state = 9}, - [456] = {.lex_state = 8, .external_lex_state = 9}, - [457] = {.lex_state = 8, .external_lex_state = 9}, - [458] = {.lex_state = 8, .external_lex_state = 9}, - [459] = {.lex_state = 8, .external_lex_state = 9}, - [460] = {.lex_state = 8, .external_lex_state = 9}, - [461] = {.lex_state = 8, .external_lex_state = 9}, - [462] = {.lex_state = 8, .external_lex_state = 9}, - [463] = {.lex_state = 8, .external_lex_state = 9}, - [464] = {.lex_state = 8, .external_lex_state = 9}, - [465] = {.lex_state = 8, .external_lex_state = 9}, - [466] = {.lex_state = 8, .external_lex_state = 9}, + [374] = {.lex_state = 13, .external_lex_state = 6}, + [375] = {.lex_state = 16, .external_lex_state = 9}, + [376] = {.lex_state = 111, .external_lex_state = 9}, + [377] = {.lex_state = 111, .external_lex_state = 9}, + [378] = {.lex_state = 13, .external_lex_state = 8}, + [379] = {.lex_state = 111, .external_lex_state = 9}, + [380] = {.lex_state = 111, .external_lex_state = 9}, + [381] = {.lex_state = 111, .external_lex_state = 9}, + [382] = {.lex_state = 111, .external_lex_state = 9}, + [383] = {.lex_state = 113, .external_lex_state = 6}, + [384] = {.lex_state = 111, .external_lex_state = 9}, + [385] = {.lex_state = 111, .external_lex_state = 9}, + [386] = {.lex_state = 13, .external_lex_state = 8}, + [387] = {.lex_state = 13, .external_lex_state = 8}, + [388] = {.lex_state = 13, .external_lex_state = 8}, + [389] = {.lex_state = 13, .external_lex_state = 8}, + [390] = {.lex_state = 13, .external_lex_state = 8}, + [391] = {.lex_state = 13, .external_lex_state = 8}, + [392] = {.lex_state = 13, .external_lex_state = 8}, + [393] = {.lex_state = 13, .external_lex_state = 8}, + [394] = {.lex_state = 13, .external_lex_state = 8}, + [395] = {.lex_state = 111, .external_lex_state = 9}, + [396] = {.lex_state = 13, .external_lex_state = 8}, + [397] = {.lex_state = 111, .external_lex_state = 9}, + [398] = {.lex_state = 111, .external_lex_state = 9}, + [399] = {.lex_state = 1, .external_lex_state = 9}, + [400] = {.lex_state = 111, .external_lex_state = 9}, + [401] = {.lex_state = 1, .external_lex_state = 9}, + [402] = {.lex_state = 16, .external_lex_state = 9}, + [403] = {.lex_state = 1, .external_lex_state = 9}, + [404] = {.lex_state = 1, .external_lex_state = 5}, + [405] = {.lex_state = 16, .external_lex_state = 9}, + [406] = {.lex_state = 1, .external_lex_state = 9}, + [407] = {.lex_state = 111, .external_lex_state = 9}, + [408] = {.lex_state = 111, .external_lex_state = 9}, + [409] = {.lex_state = 1, .external_lex_state = 9}, + [410] = {.lex_state = 111, .external_lex_state = 9}, + [411] = {.lex_state = 111, .external_lex_state = 9}, + [412] = {.lex_state = 1, .external_lex_state = 9}, + [413] = {.lex_state = 111, .external_lex_state = 9}, + [414] = {.lex_state = 113, .external_lex_state = 8}, + [415] = {.lex_state = 1, .external_lex_state = 9}, + [416] = {.lex_state = 113, .external_lex_state = 8}, + [417] = {.lex_state = 113, .external_lex_state = 8}, + [418] = {.lex_state = 113, .external_lex_state = 6}, + [419] = {.lex_state = 111, .external_lex_state = 9}, + [420] = {.lex_state = 111, .external_lex_state = 9}, + [421] = {.lex_state = 111, .external_lex_state = 9}, + [422] = {.lex_state = 1, .external_lex_state = 9}, + [423] = {.lex_state = 111, .external_lex_state = 9}, + [424] = {.lex_state = 111, .external_lex_state = 8}, + [425] = {.lex_state = 111, .external_lex_state = 5}, + [426] = {.lex_state = 111, .external_lex_state = 8}, + [427] = {.lex_state = 113, .external_lex_state = 8}, + [428] = {.lex_state = 1, .external_lex_state = 9}, + [429] = {.lex_state = 111, .external_lex_state = 5}, + [430] = {.lex_state = 1, .external_lex_state = 9}, + [431] = {.lex_state = 1, .external_lex_state = 9}, + [432] = {.lex_state = 113, .external_lex_state = 8}, + [433] = {.lex_state = 1, .external_lex_state = 5}, + [434] = {.lex_state = 1, .external_lex_state = 9}, + [435] = {.lex_state = 111, .external_lex_state = 8}, + [436] = {.lex_state = 1, .external_lex_state = 9}, + [437] = {.lex_state = 1, .external_lex_state = 9}, + [438] = {.lex_state = 111, .external_lex_state = 8}, + [439] = {.lex_state = 111, .external_lex_state = 9}, + [440] = {.lex_state = 113, .external_lex_state = 8}, + [441] = {.lex_state = 111, .external_lex_state = 9}, + [442] = {.lex_state = 113, .external_lex_state = 8}, + [443] = {.lex_state = 111, .external_lex_state = 9}, + [444] = {.lex_state = 111, .external_lex_state = 9}, + [445] = {.lex_state = 1, .external_lex_state = 9}, + [446] = {.lex_state = 111, .external_lex_state = 8}, + [447] = {.lex_state = 113, .external_lex_state = 6}, + [448] = {.lex_state = 115, .external_lex_state = 9}, + [449] = {.lex_state = 111, .external_lex_state = 8}, + [450] = {.lex_state = 111, .external_lex_state = 9}, + [451] = {.lex_state = 1, .external_lex_state = 9}, + [452] = {.lex_state = 1, .external_lex_state = 9}, + [453] = {.lex_state = 115, .external_lex_state = 9}, + [454] = {.lex_state = 111, .external_lex_state = 9}, + [455] = {.lex_state = 113, .external_lex_state = 6}, + [456] = {.lex_state = 1, .external_lex_state = 9}, + [457] = {.lex_state = 115, .external_lex_state = 9}, + [458] = {.lex_state = 1, .external_lex_state = 9}, + [459] = {.lex_state = 111, .external_lex_state = 9}, + [460] = {.lex_state = 113, .external_lex_state = 6}, + [461] = {.lex_state = 1, .external_lex_state = 9}, + [462] = {.lex_state = 1, .external_lex_state = 8}, + [463] = {.lex_state = 111, .external_lex_state = 9}, + [464] = {.lex_state = 111, .external_lex_state = 9}, + [465] = {.lex_state = 113, .external_lex_state = 8}, + [466] = {.lex_state = 113, .external_lex_state = 8}, [467] = {.lex_state = 113, .external_lex_state = 8}, - [468] = {.lex_state = 8, .external_lex_state = 9}, + [468] = {.lex_state = 113, .external_lex_state = 8}, [469] = {.lex_state = 113, .external_lex_state = 8}, - [470] = {.lex_state = 8, .external_lex_state = 9}, - [471] = {.lex_state = 8, .external_lex_state = 8}, - [472] = {.lex_state = 15, .external_lex_state = 9}, - [473] = {.lex_state = 109, .external_lex_state = 8}, - [474] = {.lex_state = 109, .external_lex_state = 8}, - [475] = {.lex_state = 15, .external_lex_state = 9}, - [476] = {.lex_state = 15, .external_lex_state = 9}, - [477] = {.lex_state = 15, .external_lex_state = 9}, - [478] = {.lex_state = 15, .external_lex_state = 9}, - [479] = {.lex_state = 15, .external_lex_state = 9}, - [480] = {.lex_state = 15, .external_lex_state = 9}, - [481] = {.lex_state = 115, .external_lex_state = 9}, - [482] = {.lex_state = 15, .external_lex_state = 9}, - [483] = {.lex_state = 15, .external_lex_state = 9}, - [484] = {.lex_state = 15, .external_lex_state = 9}, - [485] = {.lex_state = 115, .external_lex_state = 9}, - [486] = {.lex_state = 15, .external_lex_state = 9}, - [487] = {.lex_state = 15, .external_lex_state = 5}, - [488] = {.lex_state = 15, .external_lex_state = 9}, - [489] = {.lex_state = 15, .external_lex_state = 9}, - [490] = {.lex_state = 113, .external_lex_state = 6}, - [491] = {.lex_state = 115, .external_lex_state = 9}, - [492] = {.lex_state = 115, .external_lex_state = 9}, - [493] = {.lex_state = 115, .external_lex_state = 9}, - [494] = {.lex_state = 115, .external_lex_state = 9}, - [495] = {.lex_state = 115, .external_lex_state = 9}, - [496] = {.lex_state = 8, .external_lex_state = 8}, - [497] = {.lex_state = 8, .external_lex_state = 8}, - [498] = {.lex_state = 8, .external_lex_state = 8}, - [499] = {.lex_state = 8, .external_lex_state = 8}, - [500] = {.lex_state = 8, .external_lex_state = 8}, - [501] = {.lex_state = 8, .external_lex_state = 8}, - [502] = {.lex_state = 8, .external_lex_state = 8}, - [503] = {.lex_state = 8, .external_lex_state = 8}, - [504] = {.lex_state = 8, .external_lex_state = 8}, - [505] = {.lex_state = 8, .external_lex_state = 8}, - [506] = {.lex_state = 8, .external_lex_state = 8}, - [507] = {.lex_state = 115, .external_lex_state = 9}, - [508] = {.lex_state = 115, .external_lex_state = 9}, - [509] = {.lex_state = 115, .external_lex_state = 9}, - [510] = {.lex_state = 8, .external_lex_state = 8}, - [511] = {.lex_state = 8, .external_lex_state = 8}, - [512] = {.lex_state = 115, .external_lex_state = 9}, - [513] = {.lex_state = 8, .external_lex_state = 8}, - [514] = {.lex_state = 8, .external_lex_state = 8}, - [515] = {.lex_state = 115, .external_lex_state = 9}, - [516] = {.lex_state = 8, .external_lex_state = 8}, - [517] = {.lex_state = 8, .external_lex_state = 8}, - [518] = {.lex_state = 8, .external_lex_state = 6}, - [519] = {.lex_state = 115, .external_lex_state = 9}, - [520] = {.lex_state = 8, .external_lex_state = 8}, - [521] = {.lex_state = 115, .external_lex_state = 9}, - [522] = {.lex_state = 8, .external_lex_state = 8}, + [470] = {.lex_state = 111, .external_lex_state = 9}, + [471] = {.lex_state = 111, .external_lex_state = 8}, + [472] = {.lex_state = 111, .external_lex_state = 5}, + [473] = {.lex_state = 113, .external_lex_state = 6}, + [474] = {.lex_state = 16, .external_lex_state = 9}, + [475] = {.lex_state = 111, .external_lex_state = 9}, + [476] = {.lex_state = 115, .external_lex_state = 9}, + [477] = {.lex_state = 115, .external_lex_state = 9}, + [478] = {.lex_state = 113, .external_lex_state = 6}, + [479] = {.lex_state = 16, .external_lex_state = 9}, + [480] = {.lex_state = 111, .external_lex_state = 6}, + [481] = {.lex_state = 16, .external_lex_state = 9}, + [482] = {.lex_state = 16, .external_lex_state = 9}, + [483] = {.lex_state = 16, .external_lex_state = 9}, + [484] = {.lex_state = 16, .external_lex_state = 9}, + [485] = {.lex_state = 16, .external_lex_state = 9}, + [486] = {.lex_state = 16, .external_lex_state = 9}, + [487] = {.lex_state = 16, .external_lex_state = 9}, + [488] = {.lex_state = 16, .external_lex_state = 9}, + [489] = {.lex_state = 16, .external_lex_state = 9}, + [490] = {.lex_state = 16, .external_lex_state = 9}, + [491] = {.lex_state = 16, .external_lex_state = 9}, + [492] = {.lex_state = 16, .external_lex_state = 9}, + [493] = {.lex_state = 16, .external_lex_state = 9}, + [494] = {.lex_state = 16, .external_lex_state = 9}, + [495] = {.lex_state = 16, .external_lex_state = 5}, + [496] = {.lex_state = 111, .external_lex_state = 6}, + [497] = {.lex_state = 16, .external_lex_state = 9}, + [498] = {.lex_state = 16, .external_lex_state = 9}, + [499] = {.lex_state = 16, .external_lex_state = 9}, + [500] = {.lex_state = 113, .external_lex_state = 6}, + [501] = {.lex_state = 1, .external_lex_state = 8}, + [502] = {.lex_state = 109, .external_lex_state = 6}, + [503] = {.lex_state = 1, .external_lex_state = 8}, + [504] = {.lex_state = 1, .external_lex_state = 8}, + [505] = {.lex_state = 1, .external_lex_state = 8}, + [506] = {.lex_state = 1, .external_lex_state = 8}, + [507] = {.lex_state = 1, .external_lex_state = 8}, + [508] = {.lex_state = 1, .external_lex_state = 8}, + [509] = {.lex_state = 1, .external_lex_state = 8}, + [510] = {.lex_state = 1, .external_lex_state = 8}, + [511] = {.lex_state = 115, .external_lex_state = 9}, + [512] = {.lex_state = 1, .external_lex_state = 8}, + [513] = {.lex_state = 1, .external_lex_state = 8}, + [514] = {.lex_state = 1, .external_lex_state = 8}, + [515] = {.lex_state = 1, .external_lex_state = 8}, + [516] = {.lex_state = 115, .external_lex_state = 9}, + [517] = {.lex_state = 1, .external_lex_state = 8}, + [518] = {.lex_state = 16, .external_lex_state = 9}, + [519] = {.lex_state = 1, .external_lex_state = 8}, + [520] = {.lex_state = 1, .external_lex_state = 8}, + [521] = {.lex_state = 1, .external_lex_state = 8}, + [522] = {.lex_state = 1, .external_lex_state = 6}, [523] = {.lex_state = 115, .external_lex_state = 9}, - [524] = {.lex_state = 15, .external_lex_state = 9}, - [525] = {.lex_state = 115, .external_lex_state = 9}, - [526] = {.lex_state = 115, .external_lex_state = 9}, - [527] = {.lex_state = 115, .external_lex_state = 9}, - [528] = {.lex_state = 15, .external_lex_state = 9}, + [524] = {.lex_state = 115, .external_lex_state = 9}, + [525] = {.lex_state = 1, .external_lex_state = 8}, + [526] = {.lex_state = 1, .external_lex_state = 8}, + [527] = {.lex_state = 1, .external_lex_state = 8}, + [528] = {.lex_state = 115, .external_lex_state = 9}, [529] = {.lex_state = 115, .external_lex_state = 9}, - [530] = {.lex_state = 15, .external_lex_state = 9}, - [531] = {.lex_state = 15, .external_lex_state = 9}, - [532] = {.lex_state = 15, .external_lex_state = 9}, - [533] = {.lex_state = 15, .external_lex_state = 9}, + [530] = {.lex_state = 2, .external_lex_state = 6}, + [531] = {.lex_state = 115, .external_lex_state = 5}, + [532] = {.lex_state = 115, .external_lex_state = 9}, + [533] = {.lex_state = 115, .external_lex_state = 9}, [534] = {.lex_state = 115, .external_lex_state = 9}, [535] = {.lex_state = 115, .external_lex_state = 9}, - [536] = {.lex_state = 2, .external_lex_state = 6}, + [536] = {.lex_state = 113, .external_lex_state = 6}, [537] = {.lex_state = 115, .external_lex_state = 9}, [538] = {.lex_state = 115, .external_lex_state = 9}, - [539] = {.lex_state = 15, .external_lex_state = 9}, + [539] = {.lex_state = 115, .external_lex_state = 9}, [540] = {.lex_state = 115, .external_lex_state = 9}, - [541] = {.lex_state = 15, .external_lex_state = 9}, - [542] = {.lex_state = 115, .external_lex_state = 5}, - [543] = {.lex_state = 115, .external_lex_state = 5}, - [544] = {.lex_state = 115, .external_lex_state = 9}, - [545] = {.lex_state = 115, .external_lex_state = 9}, - [546] = {.lex_state = 15, .external_lex_state = 9}, - [547] = {.lex_state = 115, .external_lex_state = 9}, - [548] = {.lex_state = 15, .external_lex_state = 9}, + [541] = {.lex_state = 115, .external_lex_state = 9}, + [542] = {.lex_state = 115, .external_lex_state = 9}, + [543] = {.lex_state = 111, .external_lex_state = 6}, + [544] = {.lex_state = 16, .external_lex_state = 9}, + [545] = {.lex_state = 38, .external_lex_state = 2}, + [546] = {.lex_state = 16, .external_lex_state = 9}, + [547] = {.lex_state = 38, .external_lex_state = 2}, + [548] = {.lex_state = 113, .external_lex_state = 6}, [549] = {.lex_state = 115, .external_lex_state = 9}, - [550] = {.lex_state = 8, .external_lex_state = 5}, - [551] = {.lex_state = 15, .external_lex_state = 9}, + [550] = {.lex_state = 115, .external_lex_state = 9}, + [551] = {.lex_state = 16, .external_lex_state = 9}, [552] = {.lex_state = 115, .external_lex_state = 9}, - [553] = {.lex_state = 115, .external_lex_state = 9}, - [554] = {.lex_state = 15, .external_lex_state = 9}, - [555] = {.lex_state = 115, .external_lex_state = 5}, + [553] = {.lex_state = 16, .external_lex_state = 9}, + [554] = {.lex_state = 115, .external_lex_state = 9}, + [555] = {.lex_state = 1, .external_lex_state = 5}, [556] = {.lex_state = 115, .external_lex_state = 9}, - [557] = {.lex_state = 115, .external_lex_state = 9}, - [558] = {.lex_state = 109, .external_lex_state = 5}, - [559] = {.lex_state = 113, .external_lex_state = 6}, - [560] = {.lex_state = 113, .external_lex_state = 6}, - [561] = {.lex_state = 113, .external_lex_state = 6}, - [562] = {.lex_state = 110, .external_lex_state = 6}, - [563] = {.lex_state = 109, .external_lex_state = 8}, - [564] = {.lex_state = 109, .external_lex_state = 8}, - [565] = {.lex_state = 109, .external_lex_state = 6}, + [557] = {.lex_state = 16, .external_lex_state = 9}, + [558] = {.lex_state = 115, .external_lex_state = 9}, + [559] = {.lex_state = 115, .external_lex_state = 9}, + [560] = {.lex_state = 16, .external_lex_state = 9}, + [561] = {.lex_state = 115, .external_lex_state = 9}, + [562] = {.lex_state = 115, .external_lex_state = 9}, + [563] = {.lex_state = 115, .external_lex_state = 9}, + [564] = {.lex_state = 113, .external_lex_state = 6}, + [565] = {.lex_state = 115, .external_lex_state = 9}, [566] = {.lex_state = 115, .external_lex_state = 9}, - [567] = {.lex_state = 109, .external_lex_state = 8}, - [568] = {.lex_state = 109, .external_lex_state = 8}, - [569] = {.lex_state = 109, .external_lex_state = 8}, - [570] = {.lex_state = 109, .external_lex_state = 8}, - [571] = {.lex_state = 109, .external_lex_state = 8}, - [572] = {.lex_state = 109, .external_lex_state = 8}, + [567] = {.lex_state = 115, .external_lex_state = 9}, + [568] = {.lex_state = 115, .external_lex_state = 9}, + [569] = {.lex_state = 115, .external_lex_state = 9}, + [570] = {.lex_state = 115, .external_lex_state = 9}, + [571] = {.lex_state = 38, .external_lex_state = 2}, + [572] = {.lex_state = 111, .external_lex_state = 5}, [573] = {.lex_state = 115, .external_lex_state = 5}, - [574] = {.lex_state = 109, .external_lex_state = 8}, - [575] = {.lex_state = 109, .external_lex_state = 8}, - [576] = {.lex_state = 8, .external_lex_state = 8}, - [577] = {.lex_state = 109, .external_lex_state = 8}, - [578] = {.lex_state = 109, .external_lex_state = 8}, - [579] = {.lex_state = 13, .external_lex_state = 6}, - [580] = {.lex_state = 109, .external_lex_state = 8}, - [581] = {.lex_state = 38, .external_lex_state = 2}, + [574] = {.lex_state = 115, .external_lex_state = 9}, + [575] = {.lex_state = 115, .external_lex_state = 9}, + [576] = {.lex_state = 111, .external_lex_state = 6}, + [577] = {.lex_state = 113, .external_lex_state = 6}, + [578] = {.lex_state = 113, .external_lex_state = 6}, + [579] = {.lex_state = 115, .external_lex_state = 9}, + [580] = {.lex_state = 115, .external_lex_state = 9}, + [581] = {.lex_state = 13, .external_lex_state = 6}, [582] = {.lex_state = 115, .external_lex_state = 9}, - [583] = {.lex_state = 115, .external_lex_state = 9}, - [584] = {.lex_state = 8, .external_lex_state = 8}, - [585] = {.lex_state = 8, .external_lex_state = 5}, - [586] = {.lex_state = 109, .external_lex_state = 8}, - [587] = {.lex_state = 109, .external_lex_state = 8}, - [588] = {.lex_state = 109, .external_lex_state = 8}, - [589] = {.lex_state = 109, .external_lex_state = 8}, - [590] = {.lex_state = 8, .external_lex_state = 6}, - [591] = {.lex_state = 109, .external_lex_state = 6}, - [592] = {.lex_state = 38, .external_lex_state = 2}, - [593] = {.lex_state = 8, .external_lex_state = 5}, - [594] = {.lex_state = 109, .external_lex_state = 8}, - [595] = {.lex_state = 109, .external_lex_state = 8}, - [596] = {.lex_state = 38, .external_lex_state = 2}, - [597] = {.lex_state = 109, .external_lex_state = 8}, - [598] = {.lex_state = 109, .external_lex_state = 8}, - [599] = {.lex_state = 109, .external_lex_state = 8}, - [600] = {.lex_state = 109, .external_lex_state = 8}, - [601] = {.lex_state = 115, .external_lex_state = 9}, - [602] = {.lex_state = 113, .external_lex_state = 6}, - [603] = {.lex_state = 109, .external_lex_state = 8}, - [604] = {.lex_state = 13, .external_lex_state = 6}, - [605] = {.lex_state = 8, .external_lex_state = 5}, - [606] = {.lex_state = 38, .external_lex_state = 2}, - [607] = {.lex_state = 109, .external_lex_state = 5}, - [608] = {.lex_state = 109, .external_lex_state = 8}, - [609] = {.lex_state = 109, .external_lex_state = 8}, - [610] = {.lex_state = 113, .external_lex_state = 6}, - [611] = {.lex_state = 113, .external_lex_state = 6}, - [612] = {.lex_state = 8, .external_lex_state = 8}, - [613] = {.lex_state = 109, .external_lex_state = 8}, - [614] = {.lex_state = 8, .external_lex_state = 8}, - [615] = {.lex_state = 109, .external_lex_state = 8}, - [616] = {.lex_state = 13, .external_lex_state = 6}, - [617] = {.lex_state = 8, .external_lex_state = 8}, - [618] = {.lex_state = 115, .external_lex_state = 9}, - [619] = {.lex_state = 115, .external_lex_state = 9}, - [620] = {.lex_state = 115, .external_lex_state = 9}, - [621] = {.lex_state = 8, .external_lex_state = 8}, - [622] = {.lex_state = 15, .external_lex_state = 5}, - [623] = {.lex_state = 115, .external_lex_state = 9}, - [624] = {.lex_state = 109, .external_lex_state = 8}, - [625] = {.lex_state = 109, .external_lex_state = 6}, - [626] = {.lex_state = 115, .external_lex_state = 9}, - [627] = {.lex_state = 109, .external_lex_state = 8}, - [628] = {.lex_state = 109, .external_lex_state = 5}, - [629] = {.lex_state = 115, .external_lex_state = 9}, - [630] = {.lex_state = 109, .external_lex_state = 5}, - [631] = {.lex_state = 109, .external_lex_state = 8}, - [632] = {.lex_state = 109, .external_lex_state = 8}, - [633] = {.lex_state = 109, .external_lex_state = 5}, - [634] = {.lex_state = 109, .external_lex_state = 8}, - [635] = {.lex_state = 109, .external_lex_state = 8}, - [636] = {.lex_state = 109, .external_lex_state = 8}, - [637] = {.lex_state = 13, .external_lex_state = 6}, - [638] = {.lex_state = 109, .external_lex_state = 8}, - [639] = {.lex_state = 109, .external_lex_state = 5}, - [640] = {.lex_state = 109, .external_lex_state = 8}, - [641] = {.lex_state = 109, .external_lex_state = 8}, - [642] = {.lex_state = 109, .external_lex_state = 8}, - [643] = {.lex_state = 109, .external_lex_state = 8}, - [644] = {.lex_state = 109, .external_lex_state = 8}, - [645] = {.lex_state = 109, .external_lex_state = 8}, - [646] = {.lex_state = 109, .external_lex_state = 8}, - [647] = {.lex_state = 109, .external_lex_state = 8}, - [648] = {.lex_state = 109, .external_lex_state = 8}, - [649] = {.lex_state = 109, .external_lex_state = 8}, - [650] = {.lex_state = 109, .external_lex_state = 8}, - [651] = {.lex_state = 109, .external_lex_state = 8}, - [652] = {.lex_state = 115, .external_lex_state = 9}, - [653] = {.lex_state = 109, .external_lex_state = 6}, - [654] = {.lex_state = 15, .external_lex_state = 9}, - [655] = {.lex_state = 115, .external_lex_state = 9}, - [656] = {.lex_state = 115, .external_lex_state = 9}, - [657] = {.lex_state = 109, .external_lex_state = 5}, - [658] = {.lex_state = 115, .external_lex_state = 9}, - [659] = {.lex_state = 109, .external_lex_state = 5}, - [660] = {.lex_state = 115, .external_lex_state = 9}, - [661] = {.lex_state = 113, .external_lex_state = 6}, - [662] = {.lex_state = 115, .external_lex_state = 9}, - [663] = {.lex_state = 115, .external_lex_state = 9}, - [664] = {.lex_state = 115, .external_lex_state = 9}, - [665] = {.lex_state = 115, .external_lex_state = 5}, - [666] = {.lex_state = 115, .external_lex_state = 5}, - [667] = {.lex_state = 115, .external_lex_state = 5}, - [668] = {.lex_state = 15, .external_lex_state = 5}, - [669] = {.lex_state = 15, .external_lex_state = 5}, - [670] = {.lex_state = 15, .external_lex_state = 5}, - [671] = {.lex_state = 15, .external_lex_state = 5}, - [672] = {.lex_state = 115, .external_lex_state = 5}, - [673] = {.lex_state = 115, .external_lex_state = 5}, - [674] = {.lex_state = 115, .external_lex_state = 5}, - [675] = {.lex_state = 8, .external_lex_state = 6}, - [676] = {.lex_state = 109, .external_lex_state = 6}, + [583] = {.lex_state = 38, .external_lex_state = 2}, + [584] = {.lex_state = 115, .external_lex_state = 5}, + [585] = {.lex_state = 115, .external_lex_state = 9}, + [586] = {.lex_state = 111, .external_lex_state = 8}, + [587] = {.lex_state = 115, .external_lex_state = 9}, + [588] = {.lex_state = 111, .external_lex_state = 8}, + [589] = {.lex_state = 111, .external_lex_state = 8}, + [590] = {.lex_state = 115, .external_lex_state = 9}, + [591] = {.lex_state = 111, .external_lex_state = 5}, + [592] = {.lex_state = 1, .external_lex_state = 6}, + [593] = {.lex_state = 1, .external_lex_state = 8}, + [594] = {.lex_state = 111, .external_lex_state = 8}, + [595] = {.lex_state = 1, .external_lex_state = 8}, + [596] = {.lex_state = 111, .external_lex_state = 8}, + [597] = {.lex_state = 111, .external_lex_state = 8}, + [598] = {.lex_state = 111, .external_lex_state = 8}, + [599] = {.lex_state = 111, .external_lex_state = 8}, + [600] = {.lex_state = 111, .external_lex_state = 8}, + [601] = {.lex_state = 111, .external_lex_state = 8}, + [602] = {.lex_state = 111, .external_lex_state = 8}, + [603] = {.lex_state = 111, .external_lex_state = 8}, + [604] = {.lex_state = 111, .external_lex_state = 8}, + [605] = {.lex_state = 111, .external_lex_state = 8}, + [606] = {.lex_state = 111, .external_lex_state = 8}, + [607] = {.lex_state = 13, .external_lex_state = 6}, + [608] = {.lex_state = 1, .external_lex_state = 5}, + [609] = {.lex_state = 111, .external_lex_state = 8}, + [610] = {.lex_state = 111, .external_lex_state = 8}, + [611] = {.lex_state = 111, .external_lex_state = 8}, + [612] = {.lex_state = 111, .external_lex_state = 8}, + [613] = {.lex_state = 113, .external_lex_state = 6}, + [614] = {.lex_state = 1, .external_lex_state = 5}, + [615] = {.lex_state = 111, .external_lex_state = 8}, + [616] = {.lex_state = 111, .external_lex_state = 8}, + [617] = {.lex_state = 111, .external_lex_state = 8}, + [618] = {.lex_state = 1, .external_lex_state = 8}, + [619] = {.lex_state = 111, .external_lex_state = 8}, + [620] = {.lex_state = 1, .external_lex_state = 8}, + [621] = {.lex_state = 111, .external_lex_state = 8}, + [622] = {.lex_state = 13, .external_lex_state = 6}, + [623] = {.lex_state = 111, .external_lex_state = 8}, + [624] = {.lex_state = 111, .external_lex_state = 8}, + [625] = {.lex_state = 1, .external_lex_state = 5}, + [626] = {.lex_state = 111, .external_lex_state = 5}, + [627] = {.lex_state = 111, .external_lex_state = 8}, + [628] = {.lex_state = 1, .external_lex_state = 8}, + [629] = {.lex_state = 111, .external_lex_state = 8}, + [630] = {.lex_state = 111, .external_lex_state = 8}, + [631] = {.lex_state = 111, .external_lex_state = 8}, + [632] = {.lex_state = 111, .external_lex_state = 8}, + [633] = {.lex_state = 115, .external_lex_state = 9}, + [634] = {.lex_state = 113, .external_lex_state = 6}, + [635] = {.lex_state = 115, .external_lex_state = 9}, + [636] = {.lex_state = 115, .external_lex_state = 9}, + [637] = {.lex_state = 111, .external_lex_state = 8}, + [638] = {.lex_state = 16, .external_lex_state = 5}, + [639] = {.lex_state = 115, .external_lex_state = 9}, + [640] = {.lex_state = 13, .external_lex_state = 6}, + [641] = {.lex_state = 115, .external_lex_state = 9}, + [642] = {.lex_state = 111, .external_lex_state = 5}, + [643] = {.lex_state = 111, .external_lex_state = 8}, + [644] = {.lex_state = 111, .external_lex_state = 8}, + [645] = {.lex_state = 111, .external_lex_state = 8}, + [646] = {.lex_state = 115, .external_lex_state = 9}, + [647] = {.lex_state = 1, .external_lex_state = 8}, + [648] = {.lex_state = 111, .external_lex_state = 5}, + [649] = {.lex_state = 111, .external_lex_state = 5}, + [650] = {.lex_state = 111, .external_lex_state = 8}, + [651] = {.lex_state = 111, .external_lex_state = 8}, + [652] = {.lex_state = 111, .external_lex_state = 8}, + [653] = {.lex_state = 111, .external_lex_state = 8}, + [654] = {.lex_state = 111, .external_lex_state = 8}, + [655] = {.lex_state = 111, .external_lex_state = 8}, + [656] = {.lex_state = 111, .external_lex_state = 5}, + [657] = {.lex_state = 111, .external_lex_state = 8}, + [658] = {.lex_state = 111, .external_lex_state = 8}, + [659] = {.lex_state = 111, .external_lex_state = 8}, + [660] = {.lex_state = 111, .external_lex_state = 8}, + [661] = {.lex_state = 111, .external_lex_state = 8}, + [662] = {.lex_state = 111, .external_lex_state = 8}, + [663] = {.lex_state = 111, .external_lex_state = 8}, + [664] = {.lex_state = 111, .external_lex_state = 8}, + [665] = {.lex_state = 111, .external_lex_state = 8}, + [666] = {.lex_state = 111, .external_lex_state = 8}, + [667] = {.lex_state = 111, .external_lex_state = 8}, + [668] = {.lex_state = 115, .external_lex_state = 9}, + [669] = {.lex_state = 115, .external_lex_state = 5}, + [670] = {.lex_state = 111, .external_lex_state = 5}, + [671] = {.lex_state = 16, .external_lex_state = 9}, + [672] = {.lex_state = 115, .external_lex_state = 9}, + [673] = {.lex_state = 115, .external_lex_state = 9}, + [674] = {.lex_state = 115, .external_lex_state = 9}, + [675] = {.lex_state = 115, .external_lex_state = 9}, + [676] = {.lex_state = 115, .external_lex_state = 9}, [677] = {.lex_state = 115, .external_lex_state = 5}, - [678] = {.lex_state = 109, .external_lex_state = 6}, - [679] = {.lex_state = 115, .external_lex_state = 5}, - [680] = {.lex_state = 5, .external_lex_state = 10}, - [681] = {.lex_state = 7, .external_lex_state = 10}, - [682] = {.lex_state = 30}, - [683] = {.lex_state = 7, .external_lex_state = 10}, - [684] = {.lex_state = 7, .external_lex_state = 10}, - [685] = {.lex_state = 7, .external_lex_state = 10}, - [686] = {.lex_state = 7, .external_lex_state = 10}, - [687] = {.lex_state = 7, .external_lex_state = 10}, - [688] = {.lex_state = 21, .external_lex_state = 2}, - [689] = {.lex_state = 29}, - [690] = {.lex_state = 29, .external_lex_state = 11}, - [691] = {.lex_state = 25}, - [692] = {.lex_state = 35, .external_lex_state = 12}, - [693] = {.lex_state = 25}, - [694] = {.lex_state = 35, .external_lex_state = 12}, - [695] = {.lex_state = 35, .external_lex_state = 12}, - [696] = {.lex_state = 35, .external_lex_state = 12}, - [697] = {.lex_state = 35, .external_lex_state = 12}, - [698] = {.lex_state = 36, .external_lex_state = 13}, - [699] = {.lex_state = 36, .external_lex_state = 13}, - [700] = {.lex_state = 36, .external_lex_state = 13}, - [701] = {.lex_state = 36, .external_lex_state = 13}, - [702] = {.lex_state = 36, .external_lex_state = 13}, - [703] = {.lex_state = 35, .external_lex_state = 12}, - [704] = {.lex_state = 35, .external_lex_state = 12}, - [705] = {.lex_state = 35, .external_lex_state = 12}, - [706] = {.lex_state = 35, .external_lex_state = 12}, - [707] = {.lex_state = 35, .external_lex_state = 12}, - [708] = {.lex_state = 36, .external_lex_state = 13}, - [709] = {.lex_state = 36, .external_lex_state = 13}, - [710] = {.lex_state = 36, .external_lex_state = 13}, - [711] = {.lex_state = 35, .external_lex_state = 12}, - [712] = {.lex_state = 35, .external_lex_state = 12}, - [713] = {.lex_state = 35, .external_lex_state = 12}, - [714] = {.lex_state = 35, .external_lex_state = 12}, - [715] = {.lex_state = 36, .external_lex_state = 13}, - [716] = {.lex_state = 35, .external_lex_state = 12}, - [717] = {.lex_state = 36, .external_lex_state = 13}, - [718] = {.lex_state = 35, .external_lex_state = 12}, - [719] = {.lex_state = 36, .external_lex_state = 13}, - [720] = {.lex_state = 35, .external_lex_state = 12}, - [721] = {.lex_state = 36, .external_lex_state = 13}, - [722] = {.lex_state = 35, .external_lex_state = 12}, - [723] = {.lex_state = 36, .external_lex_state = 13}, - [724] = {.lex_state = 35, .external_lex_state = 12}, - [725] = {.lex_state = 25}, - [726] = {.lex_state = 25}, - [727] = {.lex_state = 36, .external_lex_state = 13}, - [728] = {.lex_state = 36, .external_lex_state = 13}, - [729] = {.lex_state = 36, .external_lex_state = 13}, - [730] = {.lex_state = 25, .external_lex_state = 14}, - [731] = {.lex_state = 25, .external_lex_state = 14}, - [732] = {.lex_state = 36, .external_lex_state = 13}, - [733] = {.lex_state = 35, .external_lex_state = 12}, - [734] = {.lex_state = 35, .external_lex_state = 12}, - [735] = {.lex_state = 35, .external_lex_state = 12}, - [736] = {.lex_state = 35, .external_lex_state = 12}, - [737] = {.lex_state = 36, .external_lex_state = 13}, - [738] = {.lex_state = 36, .external_lex_state = 13}, - [739] = {.lex_state = 36, .external_lex_state = 13}, - [740] = {.lex_state = 36, .external_lex_state = 13}, - [741] = {.lex_state = 36, .external_lex_state = 13}, - [742] = {.lex_state = 36, .external_lex_state = 13}, - [743] = {.lex_state = 35, .external_lex_state = 12}, - [744] = {.lex_state = 35, .external_lex_state = 12}, - [745] = {.lex_state = 35, .external_lex_state = 12}, - [746] = {.lex_state = 36, .external_lex_state = 13}, - [747] = {.lex_state = 36, .external_lex_state = 13}, - [748] = {.lex_state = 35, .external_lex_state = 12}, - [749] = {.lex_state = 36, .external_lex_state = 13}, - [750] = {.lex_state = 36, .external_lex_state = 13}, - [751] = {.lex_state = 35, .external_lex_state = 12}, - [752] = {.lex_state = 35, .external_lex_state = 12}, - [753] = {.lex_state = 35, .external_lex_state = 12}, - [754] = {.lex_state = 35, .external_lex_state = 12}, - [755] = {.lex_state = 36, .external_lex_state = 13}, - [756] = {.lex_state = 36, .external_lex_state = 13}, - [757] = {.lex_state = 36, .external_lex_state = 13}, - [758] = {.lex_state = 36, .external_lex_state = 13}, - [759] = {.lex_state = 36, .external_lex_state = 13}, - [760] = {.lex_state = 36, .external_lex_state = 13}, - [761] = {.lex_state = 35, .external_lex_state = 12}, - [762] = {.lex_state = 36, .external_lex_state = 13}, - [763] = {.lex_state = 35, .external_lex_state = 12}, - [764] = {.lex_state = 35, .external_lex_state = 12}, - [765] = {.lex_state = 35, .external_lex_state = 12}, - [766] = {.lex_state = 36, .external_lex_state = 13}, - [767] = {.lex_state = 35, .external_lex_state = 12}, - [768] = {.lex_state = 35, .external_lex_state = 12}, - [769] = {.lex_state = 35, .external_lex_state = 12}, - [770] = {.lex_state = 35, .external_lex_state = 12}, - [771] = {.lex_state = 35, .external_lex_state = 12}, - [772] = {.lex_state = 35, .external_lex_state = 12}, - [773] = {.lex_state = 35, .external_lex_state = 12}, - [774] = {.lex_state = 36, .external_lex_state = 13}, - [775] = {.lex_state = 36, .external_lex_state = 13}, - [776] = {.lex_state = 36, .external_lex_state = 13}, - [777] = {.lex_state = 35, .external_lex_state = 12}, - [778] = {.lex_state = 35, .external_lex_state = 12}, - [779] = {.lex_state = 35, .external_lex_state = 12}, - [780] = {.lex_state = 35, .external_lex_state = 12}, - [781] = {.lex_state = 36, .external_lex_state = 13}, - [782] = {.lex_state = 36, .external_lex_state = 13}, - [783] = {.lex_state = 36, .external_lex_state = 13}, - [784] = {.lex_state = 36, .external_lex_state = 13}, - [785] = {.lex_state = 36, .external_lex_state = 13}, - [786] = {.lex_state = 35, .external_lex_state = 12}, - [787] = {.lex_state = 35, .external_lex_state = 12}, - [788] = {.lex_state = 35, .external_lex_state = 12}, - [789] = {.lex_state = 35, .external_lex_state = 12}, - [790] = {.lex_state = 35, .external_lex_state = 12}, - [791] = {.lex_state = 35, .external_lex_state = 12}, - [792] = {.lex_state = 36, .external_lex_state = 13}, - [793] = {.lex_state = 35, .external_lex_state = 12}, - [794] = {.lex_state = 36, .external_lex_state = 13}, - [795] = {.lex_state = 36, .external_lex_state = 13}, - [796] = {.lex_state = 36, .external_lex_state = 13}, - [797] = {.lex_state = 36, .external_lex_state = 13}, - [798] = {.lex_state = 36, .external_lex_state = 13}, - [799] = {.lex_state = 35, .external_lex_state = 12}, - [800] = {.lex_state = 35, .external_lex_state = 12}, - [801] = {.lex_state = 35, .external_lex_state = 12}, - [802] = {.lex_state = 36, .external_lex_state = 13}, - [803] = {.lex_state = 36, .external_lex_state = 13}, - [804] = {.lex_state = 36, .external_lex_state = 13}, - [805] = {.lex_state = 36, .external_lex_state = 13}, - [806] = {.lex_state = 36, .external_lex_state = 13}, - [807] = {.lex_state = 25}, - [808] = {.lex_state = 36, .external_lex_state = 13}, - [809] = {.lex_state = 35, .external_lex_state = 12}, - [810] = {.lex_state = 25, .external_lex_state = 14}, - [811] = {.lex_state = 35, .external_lex_state = 12}, - [812] = {.lex_state = 35, .external_lex_state = 12}, - [813] = {.lex_state = 35, .external_lex_state = 12}, - [814] = {.lex_state = 36, .external_lex_state = 13}, - [815] = {.lex_state = 36, .external_lex_state = 13}, - [816] = {.lex_state = 36, .external_lex_state = 13}, - [817] = {.lex_state = 36, .external_lex_state = 13}, - [818] = {.lex_state = 35, .external_lex_state = 12}, - [819] = {.lex_state = 35, .external_lex_state = 12}, - [820] = {.lex_state = 35, .external_lex_state = 12}, - [821] = {.lex_state = 25}, - [822] = {.lex_state = 25}, - [823] = {.lex_state = 35, .external_lex_state = 12}, - [824] = {.lex_state = 35, .external_lex_state = 12}, - [825] = {.lex_state = 35, .external_lex_state = 12}, - [826] = {.lex_state = 35, .external_lex_state = 12}, - [827] = {.lex_state = 36, .external_lex_state = 13}, - [828] = {.lex_state = 36, .external_lex_state = 13}, - [829] = {.lex_state = 35, .external_lex_state = 12}, - [830] = {.lex_state = 36, .external_lex_state = 13}, - [831] = {.lex_state = 36, .external_lex_state = 13}, - [832] = {.lex_state = 35, .external_lex_state = 12}, - [833] = {.lex_state = 36, .external_lex_state = 13}, - [834] = {.lex_state = 35, .external_lex_state = 12}, - [835] = {.lex_state = 35, .external_lex_state = 12}, - [836] = {.lex_state = 35, .external_lex_state = 12}, - [837] = {.lex_state = 35, .external_lex_state = 12}, - [838] = {.lex_state = 35, .external_lex_state = 12}, - [839] = {.lex_state = 36, .external_lex_state = 13}, - [840] = {.lex_state = 36, .external_lex_state = 13}, - [841] = {.lex_state = 36, .external_lex_state = 13}, - [842] = {.lex_state = 36, .external_lex_state = 13}, - [843] = {.lex_state = 36, .external_lex_state = 13}, - [844] = {.lex_state = 36, .external_lex_state = 13}, - [845] = {.lex_state = 36, .external_lex_state = 13}, - [846] = {.lex_state = 36, .external_lex_state = 13}, - [847] = {.lex_state = 36, .external_lex_state = 13}, - [848] = {.lex_state = 36, .external_lex_state = 13}, - [849] = {.lex_state = 35, .external_lex_state = 12}, - [850] = {.lex_state = 35, .external_lex_state = 12}, - [851] = {.lex_state = 35, .external_lex_state = 12}, - [852] = {.lex_state = 35, .external_lex_state = 12}, - [853] = {.lex_state = 25}, - [854] = {.lex_state = 35, .external_lex_state = 12}, - [855] = {.lex_state = 36, .external_lex_state = 13}, - [856] = {.lex_state = 36, .external_lex_state = 13}, - [857] = {.lex_state = 35, .external_lex_state = 12}, - [858] = {.lex_state = 35, .external_lex_state = 12}, - [859] = {.lex_state = 35, .external_lex_state = 12}, - [860] = {.lex_state = 35, .external_lex_state = 12}, - [861] = {.lex_state = 36, .external_lex_state = 13}, - [862] = {.lex_state = 36, .external_lex_state = 13}, - [863] = {.lex_state = 36, .external_lex_state = 13}, - [864] = {.lex_state = 35, .external_lex_state = 12}, - [865] = {.lex_state = 35, .external_lex_state = 12}, - [866] = {.lex_state = 35, .external_lex_state = 12}, - [867] = {.lex_state = 36, .external_lex_state = 13}, - [868] = {.lex_state = 36, .external_lex_state = 13}, - [869] = {.lex_state = 35, .external_lex_state = 12}, - [870] = {.lex_state = 36, .external_lex_state = 13}, - [871] = {.lex_state = 35, .external_lex_state = 12}, - [872] = {.lex_state = 36, .external_lex_state = 13}, - [873] = {.lex_state = 35, .external_lex_state = 12}, - [874] = {.lex_state = 35, .external_lex_state = 12}, - [875] = {.lex_state = 36, .external_lex_state = 13}, - [876] = {.lex_state = 36, .external_lex_state = 13}, - [877] = {.lex_state = 35, .external_lex_state = 12}, - [878] = {.lex_state = 36, .external_lex_state = 13}, - [879] = {.lex_state = 36, .external_lex_state = 13}, - [880] = {.lex_state = 36, .external_lex_state = 13}, - [881] = {.lex_state = 35, .external_lex_state = 12}, - [882] = {.lex_state = 36, .external_lex_state = 13}, - [883] = {.lex_state = 36, .external_lex_state = 13}, - [884] = {.lex_state = 36, .external_lex_state = 13}, - [885] = {.lex_state = 35, .external_lex_state = 12}, - [886] = {.lex_state = 36, .external_lex_state = 13}, - [887] = {.lex_state = 25, .external_lex_state = 14}, - [888] = {.lex_state = 35, .external_lex_state = 12}, - [889] = {.lex_state = 35, .external_lex_state = 12}, - [890] = {.lex_state = 35, .external_lex_state = 12}, - [891] = {.lex_state = 36, .external_lex_state = 13}, - [892] = {.lex_state = 35, .external_lex_state = 12}, - [893] = {.lex_state = 36, .external_lex_state = 13}, - [894] = {.lex_state = 36, .external_lex_state = 13}, - [895] = {.lex_state = 35, .external_lex_state = 12}, - [896] = {.lex_state = 25, .external_lex_state = 14}, - [897] = {.lex_state = 36, .external_lex_state = 13}, - [898] = {.lex_state = 36, .external_lex_state = 13}, - [899] = {.lex_state = 35, .external_lex_state = 12}, - [900] = {.lex_state = 36, .external_lex_state = 13}, - [901] = {.lex_state = 36, .external_lex_state = 13}, - [902] = {.lex_state = 36, .external_lex_state = 13}, - [903] = {.lex_state = 35, .external_lex_state = 12}, - [904] = {.lex_state = 35, .external_lex_state = 12}, - [905] = {.lex_state = 36, .external_lex_state = 13}, - [906] = {.lex_state = 36, .external_lex_state = 13}, - [907] = {.lex_state = 36, .external_lex_state = 13}, - [908] = {.lex_state = 36, .external_lex_state = 13}, - [909] = {.lex_state = 35, .external_lex_state = 12}, - [910] = {.lex_state = 35, .external_lex_state = 12}, - [911] = {.lex_state = 35, .external_lex_state = 12}, - [912] = {.lex_state = 25}, - [913] = {.lex_state = 36, .external_lex_state = 12}, + [678] = {.lex_state = 115, .external_lex_state = 5}, + [679] = {.lex_state = 16, .external_lex_state = 5}, + [680] = {.lex_state = 115, .external_lex_state = 5}, + [681] = {.lex_state = 16, .external_lex_state = 5}, + [682] = {.lex_state = 115, .external_lex_state = 5}, + [683] = {.lex_state = 16, .external_lex_state = 5}, + [684] = {.lex_state = 16, .external_lex_state = 5}, + [685] = {.lex_state = 111, .external_lex_state = 6}, + [686] = {.lex_state = 111, .external_lex_state = 6}, + [687] = {.lex_state = 1, .external_lex_state = 6}, + [688] = {.lex_state = 115, .external_lex_state = 5}, + [689] = {.lex_state = 115, .external_lex_state = 5}, + [690] = {.lex_state = 115, .external_lex_state = 5}, + [691] = {.lex_state = 115, .external_lex_state = 5}, + [692] = {.lex_state = 5, .external_lex_state = 10}, + [693] = {.lex_state = 21, .external_lex_state = 2}, + [694] = {.lex_state = 7, .external_lex_state = 10}, + [695] = {.lex_state = 7, .external_lex_state = 10}, + [696] = {.lex_state = 7, .external_lex_state = 10}, + [697] = {.lex_state = 7, .external_lex_state = 10}, + [698] = {.lex_state = 30}, + [699] = {.lex_state = 7, .external_lex_state = 10}, + [700] = {.lex_state = 7, .external_lex_state = 10}, + [701] = {.lex_state = 29, .external_lex_state = 11}, + [702] = {.lex_state = 29}, + [703] = {.lex_state = 36, .external_lex_state = 12}, + [704] = {.lex_state = 25, .external_lex_state = 13}, + [705] = {.lex_state = 35, .external_lex_state = 14}, + [706] = {.lex_state = 35, .external_lex_state = 14}, + [707] = {.lex_state = 35, .external_lex_state = 14}, + [708] = {.lex_state = 35, .external_lex_state = 14}, + [709] = {.lex_state = 36, .external_lex_state = 12}, + [710] = {.lex_state = 36, .external_lex_state = 12}, + [711] = {.lex_state = 36, .external_lex_state = 12}, + [712] = {.lex_state = 36, .external_lex_state = 12}, + [713] = {.lex_state = 35, .external_lex_state = 14}, + [714] = {.lex_state = 35, .external_lex_state = 14}, + [715] = {.lex_state = 35, .external_lex_state = 14}, + [716] = {.lex_state = 35, .external_lex_state = 14}, + [717] = {.lex_state = 35, .external_lex_state = 14}, + [718] = {.lex_state = 35, .external_lex_state = 14}, + [719] = {.lex_state = 35, .external_lex_state = 14}, + [720] = {.lex_state = 36, .external_lex_state = 12}, + [721] = {.lex_state = 36, .external_lex_state = 12}, + [722] = {.lex_state = 36, .external_lex_state = 12}, + [723] = {.lex_state = 36, .external_lex_state = 12}, + [724] = {.lex_state = 36, .external_lex_state = 12}, + [725] = {.lex_state = 36, .external_lex_state = 12}, + [726] = {.lex_state = 36, .external_lex_state = 12}, + [727] = {.lex_state = 25}, + [728] = {.lex_state = 25}, + [729] = {.lex_state = 35, .external_lex_state = 14}, + [730] = {.lex_state = 35, .external_lex_state = 14}, + [731] = {.lex_state = 36, .external_lex_state = 12}, + [732] = {.lex_state = 35, .external_lex_state = 14}, + [733] = {.lex_state = 35, .external_lex_state = 14}, + [734] = {.lex_state = 35, .external_lex_state = 14}, + [735] = {.lex_state = 36, .external_lex_state = 12}, + [736] = {.lex_state = 36, .external_lex_state = 12}, + [737] = {.lex_state = 35, .external_lex_state = 14}, + [738] = {.lex_state = 36, .external_lex_state = 12}, + [739] = {.lex_state = 36, .external_lex_state = 12}, + [740] = {.lex_state = 36, .external_lex_state = 12}, + [741] = {.lex_state = 35, .external_lex_state = 14}, + [742] = {.lex_state = 36, .external_lex_state = 12}, + [743] = {.lex_state = 36, .external_lex_state = 12}, + [744] = {.lex_state = 36, .external_lex_state = 12}, + [745] = {.lex_state = 35, .external_lex_state = 14}, + [746] = {.lex_state = 36, .external_lex_state = 12}, + [747] = {.lex_state = 36, .external_lex_state = 12}, + [748] = {.lex_state = 35, .external_lex_state = 14}, + [749] = {.lex_state = 35, .external_lex_state = 14}, + [750] = {.lex_state = 35, .external_lex_state = 14}, + [751] = {.lex_state = 35, .external_lex_state = 14}, + [752] = {.lex_state = 36, .external_lex_state = 12}, + [753] = {.lex_state = 36, .external_lex_state = 12}, + [754] = {.lex_state = 36, .external_lex_state = 12}, + [755] = {.lex_state = 35, .external_lex_state = 14}, + [756] = {.lex_state = 35, .external_lex_state = 14}, + [757] = {.lex_state = 35, .external_lex_state = 14}, + [758] = {.lex_state = 35, .external_lex_state = 14}, + [759] = {.lex_state = 35, .external_lex_state = 14}, + [760] = {.lex_state = 35, .external_lex_state = 14}, + [761] = {.lex_state = 36, .external_lex_state = 12}, + [762] = {.lex_state = 36, .external_lex_state = 12}, + [763] = {.lex_state = 36, .external_lex_state = 12}, + [764] = {.lex_state = 36, .external_lex_state = 12}, + [765] = {.lex_state = 36, .external_lex_state = 12}, + [766] = {.lex_state = 36, .external_lex_state = 12}, + [767] = {.lex_state = 36, .external_lex_state = 12}, + [768] = {.lex_state = 35, .external_lex_state = 14}, + [769] = {.lex_state = 35, .external_lex_state = 14}, + [770] = {.lex_state = 36, .external_lex_state = 12}, + [771] = {.lex_state = 35, .external_lex_state = 14}, + [772] = {.lex_state = 35, .external_lex_state = 14}, + [773] = {.lex_state = 25}, + [774] = {.lex_state = 36, .external_lex_state = 12}, + [775] = {.lex_state = 36, .external_lex_state = 12}, + [776] = {.lex_state = 35, .external_lex_state = 14}, + [777] = {.lex_state = 35, .external_lex_state = 14}, + [778] = {.lex_state = 36, .external_lex_state = 12}, + [779] = {.lex_state = 35, .external_lex_state = 14}, + [780] = {.lex_state = 35, .external_lex_state = 14}, + [781] = {.lex_state = 35, .external_lex_state = 14}, + [782] = {.lex_state = 36, .external_lex_state = 12}, + [783] = {.lex_state = 36, .external_lex_state = 12}, + [784] = {.lex_state = 36, .external_lex_state = 12}, + [785] = {.lex_state = 36, .external_lex_state = 12}, + [786] = {.lex_state = 35, .external_lex_state = 14}, + [787] = {.lex_state = 35, .external_lex_state = 14}, + [788] = {.lex_state = 35, .external_lex_state = 14}, + [789] = {.lex_state = 25}, + [790] = {.lex_state = 36, .external_lex_state = 12}, + [791] = {.lex_state = 36, .external_lex_state = 12}, + [792] = {.lex_state = 36, .external_lex_state = 12}, + [793] = {.lex_state = 36, .external_lex_state = 12}, + [794] = {.lex_state = 35, .external_lex_state = 14}, + [795] = {.lex_state = 35, .external_lex_state = 14}, + [796] = {.lex_state = 25}, + [797] = {.lex_state = 35, .external_lex_state = 14}, + [798] = {.lex_state = 35, .external_lex_state = 14}, + [799] = {.lex_state = 35, .external_lex_state = 14}, + [800] = {.lex_state = 35, .external_lex_state = 14}, + [801] = {.lex_state = 35, .external_lex_state = 14}, + [802] = {.lex_state = 35, .external_lex_state = 14}, + [803] = {.lex_state = 36, .external_lex_state = 12}, + [804] = {.lex_state = 36, .external_lex_state = 12}, + [805] = {.lex_state = 36, .external_lex_state = 12}, + [806] = {.lex_state = 36, .external_lex_state = 12}, + [807] = {.lex_state = 36, .external_lex_state = 12}, + [808] = {.lex_state = 35, .external_lex_state = 14}, + [809] = {.lex_state = 35, .external_lex_state = 14}, + [810] = {.lex_state = 36, .external_lex_state = 12}, + [811] = {.lex_state = 36, .external_lex_state = 12}, + [812] = {.lex_state = 35, .external_lex_state = 14}, + [813] = {.lex_state = 35, .external_lex_state = 14}, + [814] = {.lex_state = 36, .external_lex_state = 12}, + [815] = {.lex_state = 36, .external_lex_state = 12}, + [816] = {.lex_state = 36, .external_lex_state = 12}, + [817] = {.lex_state = 36, .external_lex_state = 12}, + [818] = {.lex_state = 36, .external_lex_state = 12}, + [819] = {.lex_state = 35, .external_lex_state = 14}, + [820] = {.lex_state = 35, .external_lex_state = 14}, + [821] = {.lex_state = 35, .external_lex_state = 14}, + [822] = {.lex_state = 35, .external_lex_state = 14}, + [823] = {.lex_state = 36, .external_lex_state = 12}, + [824] = {.lex_state = 36, .external_lex_state = 12}, + [825] = {.lex_state = 36, .external_lex_state = 12}, + [826] = {.lex_state = 36, .external_lex_state = 12}, + [827] = {.lex_state = 36, .external_lex_state = 12}, + [828] = {.lex_state = 35, .external_lex_state = 14}, + [829] = {.lex_state = 35, .external_lex_state = 14}, + [830] = {.lex_state = 35, .external_lex_state = 14}, + [831] = {.lex_state = 36, .external_lex_state = 12}, + [832] = {.lex_state = 35, .external_lex_state = 14}, + [833] = {.lex_state = 36, .external_lex_state = 12}, + [834] = {.lex_state = 36, .external_lex_state = 12}, + [835] = {.lex_state = 35, .external_lex_state = 14}, + [836] = {.lex_state = 36, .external_lex_state = 12}, + [837] = {.lex_state = 35, .external_lex_state = 14}, + [838] = {.lex_state = 35, .external_lex_state = 14}, + [839] = {.lex_state = 36, .external_lex_state = 12}, + [840] = {.lex_state = 35, .external_lex_state = 14}, + [841] = {.lex_state = 35, .external_lex_state = 14}, + [842] = {.lex_state = 35, .external_lex_state = 14}, + [843] = {.lex_state = 25, .external_lex_state = 13}, + [844] = {.lex_state = 35, .external_lex_state = 14}, + [845] = {.lex_state = 35, .external_lex_state = 14}, + [846] = {.lex_state = 35, .external_lex_state = 14}, + [847] = {.lex_state = 36, .external_lex_state = 12}, + [848] = {.lex_state = 36, .external_lex_state = 12}, + [849] = {.lex_state = 35, .external_lex_state = 14}, + [850] = {.lex_state = 36, .external_lex_state = 12}, + [851] = {.lex_state = 36, .external_lex_state = 12}, + [852] = {.lex_state = 35, .external_lex_state = 14}, + [853] = {.lex_state = 35, .external_lex_state = 14}, + [854] = {.lex_state = 35, .external_lex_state = 14}, + [855] = {.lex_state = 35, .external_lex_state = 14}, + [856] = {.lex_state = 36, .external_lex_state = 12}, + [857] = {.lex_state = 36, .external_lex_state = 12}, + [858] = {.lex_state = 36, .external_lex_state = 12}, + [859] = {.lex_state = 36, .external_lex_state = 12}, + [860] = {.lex_state = 35, .external_lex_state = 14}, + [861] = {.lex_state = 35, .external_lex_state = 14}, + [862] = {.lex_state = 35, .external_lex_state = 14}, + [863] = {.lex_state = 35, .external_lex_state = 14}, + [864] = {.lex_state = 36, .external_lex_state = 12}, + [865] = {.lex_state = 36, .external_lex_state = 12}, + [866] = {.lex_state = 36, .external_lex_state = 12}, + [867] = {.lex_state = 36, .external_lex_state = 12}, + [868] = {.lex_state = 36, .external_lex_state = 12}, + [869] = {.lex_state = 36, .external_lex_state = 12}, + [870] = {.lex_state = 25}, + [871] = {.lex_state = 36, .external_lex_state = 12}, + [872] = {.lex_state = 36, .external_lex_state = 12}, + [873] = {.lex_state = 35, .external_lex_state = 14}, + [874] = {.lex_state = 25}, + [875] = {.lex_state = 35, .external_lex_state = 14}, + [876] = {.lex_state = 25}, + [877] = {.lex_state = 35, .external_lex_state = 14}, + [878] = {.lex_state = 35, .external_lex_state = 14}, + [879] = {.lex_state = 25, .external_lex_state = 13}, + [880] = {.lex_state = 36, .external_lex_state = 12}, + [881] = {.lex_state = 36, .external_lex_state = 12}, + [882] = {.lex_state = 36, .external_lex_state = 12}, + [883] = {.lex_state = 36, .external_lex_state = 12}, + [884] = {.lex_state = 35, .external_lex_state = 14}, + [885] = {.lex_state = 35, .external_lex_state = 14}, + [886] = {.lex_state = 35, .external_lex_state = 14}, + [887] = {.lex_state = 35, .external_lex_state = 14}, + [888] = {.lex_state = 35, .external_lex_state = 14}, + [889] = {.lex_state = 35, .external_lex_state = 14}, + [890] = {.lex_state = 36, .external_lex_state = 12}, + [891] = {.lex_state = 36, .external_lex_state = 12}, + [892] = {.lex_state = 36, .external_lex_state = 12}, + [893] = {.lex_state = 36, .external_lex_state = 12}, + [894] = {.lex_state = 36, .external_lex_state = 12}, + [895] = {.lex_state = 35, .external_lex_state = 14}, + [896] = {.lex_state = 35, .external_lex_state = 14}, + [897] = {.lex_state = 35, .external_lex_state = 14}, + [898] = {.lex_state = 36, .external_lex_state = 12}, + [899] = {.lex_state = 36, .external_lex_state = 12}, + [900] = {.lex_state = 36, .external_lex_state = 12}, + [901] = {.lex_state = 36, .external_lex_state = 12}, + [902] = {.lex_state = 35, .external_lex_state = 14}, + [903] = {.lex_state = 35, .external_lex_state = 14}, + [904] = {.lex_state = 35, .external_lex_state = 14}, + [905] = {.lex_state = 35, .external_lex_state = 14}, + [906] = {.lex_state = 36, .external_lex_state = 12}, + [907] = {.lex_state = 36, .external_lex_state = 12}, + [908] = {.lex_state = 36, .external_lex_state = 12}, + [909] = {.lex_state = 36, .external_lex_state = 12}, + [910] = {.lex_state = 35, .external_lex_state = 14}, + [911] = {.lex_state = 35, .external_lex_state = 14}, + [912] = {.lex_state = 35, .external_lex_state = 14}, + [913] = {.lex_state = 35, .external_lex_state = 14}, [914] = {.lex_state = 36, .external_lex_state = 12}, [915] = {.lex_state = 36, .external_lex_state = 12}, - [916] = {.lex_state = 25}, + [916] = {.lex_state = 36, .external_lex_state = 12}, [917] = {.lex_state = 36, .external_lex_state = 12}, - [918] = {.lex_state = 36, .external_lex_state = 12}, - [919] = {.lex_state = 36, .external_lex_state = 12}, - [920] = {.lex_state = 25}, - [921] = {.lex_state = 25}, - [922] = {.lex_state = 36, .external_lex_state = 12}, - [923] = {.lex_state = 25}, - [924] = {.lex_state = 36, .external_lex_state = 12}, - [925] = {.lex_state = 25}, - [926] = {.lex_state = 36, .external_lex_state = 12}, - [927] = {.lex_state = 36, .external_lex_state = 12}, + [918] = {.lex_state = 35, .external_lex_state = 14}, + [919] = {.lex_state = 35, .external_lex_state = 14}, + [920] = {.lex_state = 25, .external_lex_state = 13}, + [921] = {.lex_state = 35, .external_lex_state = 14}, + [922] = {.lex_state = 35, .external_lex_state = 14}, + [923] = {.lex_state = 25, .external_lex_state = 13}, + [924] = {.lex_state = 36, .external_lex_state = 14}, + [925] = {.lex_state = 36, .external_lex_state = 14}, + [926] = {.lex_state = 25}, + [927] = {.lex_state = 25}, [928] = {.lex_state = 25}, [929] = {.lex_state = 25}, - [930] = {.lex_state = 36, .external_lex_state = 12}, - [931] = {.lex_state = 36, .external_lex_state = 12}, - [932] = {.lex_state = 36, .external_lex_state = 12}, - [933] = {.lex_state = 36, .external_lex_state = 12}, - [934] = {.lex_state = 36, .external_lex_state = 12}, - [935] = {.lex_state = 25}, + [930] = {.lex_state = 25}, + [931] = {.lex_state = 25}, + [932] = {.lex_state = 25}, + [933] = {.lex_state = 25}, + [934] = {.lex_state = 25}, + [935] = {.lex_state = 36, .external_lex_state = 14}, [936] = {.lex_state = 25}, - [937] = {.lex_state = 36, .external_lex_state = 12}, - [938] = {.lex_state = 36, .external_lex_state = 12}, - [939] = {.lex_state = 36, .external_lex_state = 12}, - [940] = {.lex_state = 36, .external_lex_state = 12}, - [941] = {.lex_state = 36, .external_lex_state = 12}, - [942] = {.lex_state = 36, .external_lex_state = 12}, - [943] = {.lex_state = 36, .external_lex_state = 12}, - [944] = {.lex_state = 36, .external_lex_state = 12}, - [945] = {.lex_state = 36, .external_lex_state = 12}, - [946] = {.lex_state = 36, .external_lex_state = 12}, - [947] = {.lex_state = 36, .external_lex_state = 12}, - [948] = {.lex_state = 36, .external_lex_state = 12}, - [949] = {.lex_state = 36, .external_lex_state = 12}, - [950] = {.lex_state = 36, .external_lex_state = 12}, - [951] = {.lex_state = 36, .external_lex_state = 12}, - [952] = {.lex_state = 36, .external_lex_state = 12}, - [953] = {.lex_state = 36, .external_lex_state = 12}, - [954] = {.lex_state = 36, .external_lex_state = 12}, - [955] = {.lex_state = 36, .external_lex_state = 12}, - [956] = {.lex_state = 36, .external_lex_state = 12}, - [957] = {.lex_state = 36, .external_lex_state = 12}, - [958] = {.lex_state = 36, .external_lex_state = 12}, - [959] = {.lex_state = 36, .external_lex_state = 12}, - [960] = {.lex_state = 36, .external_lex_state = 12}, - [961] = {.lex_state = 36, .external_lex_state = 12}, - [962] = {.lex_state = 36, .external_lex_state = 12}, - [963] = {.lex_state = 36, .external_lex_state = 12}, - [964] = {.lex_state = 36, .external_lex_state = 12}, - [965] = {.lex_state = 36, .external_lex_state = 12}, - [966] = {.lex_state = 36, .external_lex_state = 12}, - [967] = {.lex_state = 36, .external_lex_state = 12}, - [968] = {.lex_state = 36, .external_lex_state = 12}, - [969] = {.lex_state = 36, .external_lex_state = 12}, - [970] = {.lex_state = 36, .external_lex_state = 12}, - [971] = {.lex_state = 25}, - [972] = {.lex_state = 25}, - [973] = {.lex_state = 36, .external_lex_state = 12}, - [974] = {.lex_state = 36, .external_lex_state = 12}, - [975] = {.lex_state = 36, .external_lex_state = 12}, - [976] = {.lex_state = 36, .external_lex_state = 12}, - [977] = {.lex_state = 36, .external_lex_state = 12}, - [978] = {.lex_state = 36, .external_lex_state = 12}, - [979] = {.lex_state = 36, .external_lex_state = 12}, - [980] = {.lex_state = 36, .external_lex_state = 12}, - [981] = {.lex_state = 36, .external_lex_state = 12}, - [982] = {.lex_state = 36, .external_lex_state = 12}, - [983] = {.lex_state = 36, .external_lex_state = 12}, - [984] = {.lex_state = 36, .external_lex_state = 12}, - [985] = {.lex_state = 36, .external_lex_state = 12}, - [986] = {.lex_state = 36, .external_lex_state = 12}, - [987] = {.lex_state = 25}, - [988] = {.lex_state = 36, .external_lex_state = 12}, - [989] = {.lex_state = 25}, - [990] = {.lex_state = 36, .external_lex_state = 12}, - [991] = {.lex_state = 36, .external_lex_state = 12}, - [992] = {.lex_state = 36, .external_lex_state = 12}, - [993] = {.lex_state = 36, .external_lex_state = 12}, - [994] = {.lex_state = 36, .external_lex_state = 12}, - [995] = {.lex_state = 25}, - [996] = {.lex_state = 36, .external_lex_state = 12}, - [997] = {.lex_state = 36, .external_lex_state = 12}, - [998] = {.lex_state = 25}, - [999] = {.lex_state = 25}, - [1000] = {.lex_state = 36, .external_lex_state = 12}, - [1001] = {.lex_state = 36, .external_lex_state = 12}, - [1002] = {.lex_state = 36, .external_lex_state = 12}, - [1003] = {.lex_state = 36, .external_lex_state = 12}, - [1004] = {.lex_state = 36, .external_lex_state = 12}, - [1005] = {.lex_state = 36, .external_lex_state = 12}, - [1006] = {.lex_state = 36, .external_lex_state = 12}, - [1007] = {.lex_state = 36, .external_lex_state = 12}, - [1008] = {.lex_state = 36, .external_lex_state = 12}, - [1009] = {.lex_state = 36, .external_lex_state = 12}, - [1010] = {.lex_state = 36, .external_lex_state = 12}, - [1011] = {.lex_state = 25}, - [1012] = {.lex_state = 25}, - [1013] = {.lex_state = 25}, - [1014] = {.lex_state = 25}, - [1015] = {.lex_state = 25}, - [1016] = {.lex_state = 36, .external_lex_state = 12}, - [1017] = {.lex_state = 36, .external_lex_state = 12}, - [1018] = {.lex_state = 36, .external_lex_state = 12}, - [1019] = {.lex_state = 36, .external_lex_state = 12}, - [1020] = {.lex_state = 36, .external_lex_state = 12}, - [1021] = {.lex_state = 36, .external_lex_state = 12}, - [1022] = {.lex_state = 36, .external_lex_state = 12}, - [1023] = {.lex_state = 36, .external_lex_state = 12}, - [1024] = {.lex_state = 36, .external_lex_state = 12}, - [1025] = {.lex_state = 36, .external_lex_state = 12}, - [1026] = {.lex_state = 36, .external_lex_state = 12}, - [1027] = {.lex_state = 36, .external_lex_state = 12}, - [1028] = {.lex_state = 36, .external_lex_state = 12}, - [1029] = {.lex_state = 36, .external_lex_state = 12}, - [1030] = {.lex_state = 36, .external_lex_state = 12}, - [1031] = {.lex_state = 36, .external_lex_state = 12}, - [1032] = {.lex_state = 25}, - [1033] = {.lex_state = 36, .external_lex_state = 12}, - [1034] = {.lex_state = 36, .external_lex_state = 12}, - [1035] = {.lex_state = 36, .external_lex_state = 12}, - [1036] = {.lex_state = 36, .external_lex_state = 12}, - [1037] = {.lex_state = 36, .external_lex_state = 12}, - [1038] = {.lex_state = 36, .external_lex_state = 12}, - [1039] = {.lex_state = 36, .external_lex_state = 12}, - [1040] = {.lex_state = 36, .external_lex_state = 12}, - [1041] = {.lex_state = 36, .external_lex_state = 12}, - [1042] = {.lex_state = 36, .external_lex_state = 12}, - [1043] = {.lex_state = 36, .external_lex_state = 12}, - [1044] = {.lex_state = 36, .external_lex_state = 12}, - [1045] = {.lex_state = 36, .external_lex_state = 12}, - [1046] = {.lex_state = 36, .external_lex_state = 12}, - [1047] = {.lex_state = 36, .external_lex_state = 12}, - [1048] = {.lex_state = 36, .external_lex_state = 12}, - [1049] = {.lex_state = 36, .external_lex_state = 12}, - [1050] = {.lex_state = 36, .external_lex_state = 12}, - [1051] = {.lex_state = 36, .external_lex_state = 12}, - [1052] = {.lex_state = 36, .external_lex_state = 12}, - [1053] = {.lex_state = 36, .external_lex_state = 12}, - [1054] = {.lex_state = 36, .external_lex_state = 12}, - [1055] = {.lex_state = 36, .external_lex_state = 12}, - [1056] = {.lex_state = 36, .external_lex_state = 12}, - [1057] = {.lex_state = 36, .external_lex_state = 12}, - [1058] = {.lex_state = 36, .external_lex_state = 12}, - [1059] = {.lex_state = 36, .external_lex_state = 12}, - [1060] = {.lex_state = 36, .external_lex_state = 12}, - [1061] = {.lex_state = 36, .external_lex_state = 12}, - [1062] = {.lex_state = 36, .external_lex_state = 12}, - [1063] = {.lex_state = 36, .external_lex_state = 12}, - [1064] = {.lex_state = 36, .external_lex_state = 12}, - [1065] = {.lex_state = 36, .external_lex_state = 12}, - [1066] = {.lex_state = 36, .external_lex_state = 12}, - [1067] = {.lex_state = 36, .external_lex_state = 12}, - [1068] = {.lex_state = 36, .external_lex_state = 12}, - [1069] = {.lex_state = 36, .external_lex_state = 12}, - [1070] = {.lex_state = 36, .external_lex_state = 12}, - [1071] = {.lex_state = 36, .external_lex_state = 12}, - [1072] = {.lex_state = 36, .external_lex_state = 12}, - [1073] = {.lex_state = 36, .external_lex_state = 12}, - [1074] = {.lex_state = 36, .external_lex_state = 12}, - [1075] = {.lex_state = 36, .external_lex_state = 12}, - [1076] = {.lex_state = 36, .external_lex_state = 12}, - [1077] = {.lex_state = 36, .external_lex_state = 12}, - [1078] = {.lex_state = 36, .external_lex_state = 12}, - [1079] = {.lex_state = 36, .external_lex_state = 12}, - [1080] = {.lex_state = 36, .external_lex_state = 12}, - [1081] = {.lex_state = 36, .external_lex_state = 12}, - [1082] = {.lex_state = 36, .external_lex_state = 12}, - [1083] = {.lex_state = 36, .external_lex_state = 12}, - [1084] = {.lex_state = 36, .external_lex_state = 12}, - [1085] = {.lex_state = 36, .external_lex_state = 12}, - [1086] = {.lex_state = 36, .external_lex_state = 12}, - [1087] = {.lex_state = 36, .external_lex_state = 12}, - [1088] = {.lex_state = 36, .external_lex_state = 12}, - [1089] = {.lex_state = 36, .external_lex_state = 12}, - [1090] = {.lex_state = 36, .external_lex_state = 12}, - [1091] = {.lex_state = 36, .external_lex_state = 12}, - [1092] = {.lex_state = 36, .external_lex_state = 12}, - [1093] = {.lex_state = 36, .external_lex_state = 12}, - [1094] = {.lex_state = 36, .external_lex_state = 12}, - [1095] = {.lex_state = 36, .external_lex_state = 12}, - [1096] = {.lex_state = 36, .external_lex_state = 12}, - [1097] = {.lex_state = 36, .external_lex_state = 12}, - [1098] = {.lex_state = 36, .external_lex_state = 12}, - [1099] = {.lex_state = 36, .external_lex_state = 12}, - [1100] = {.lex_state = 36, .external_lex_state = 12}, - [1101] = {.lex_state = 36, .external_lex_state = 12}, - [1102] = {.lex_state = 36, .external_lex_state = 12}, - [1103] = {.lex_state = 36, .external_lex_state = 12}, - [1104] = {.lex_state = 36, .external_lex_state = 12}, - [1105] = {.lex_state = 36, .external_lex_state = 12}, - [1106] = {.lex_state = 36, .external_lex_state = 12}, - [1107] = {.lex_state = 36, .external_lex_state = 12}, - [1108] = {.lex_state = 36, .external_lex_state = 12}, - [1109] = {.lex_state = 36, .external_lex_state = 12}, - [1110] = {.lex_state = 36, .external_lex_state = 12}, - [1111] = {.lex_state = 36, .external_lex_state = 12}, - [1112] = {.lex_state = 36, .external_lex_state = 12}, - [1113] = {.lex_state = 36, .external_lex_state = 12}, - [1114] = {.lex_state = 36, .external_lex_state = 12}, - [1115] = {.lex_state = 36, .external_lex_state = 12}, - [1116] = {.lex_state = 36, .external_lex_state = 12}, - [1117] = {.lex_state = 36, .external_lex_state = 12}, - [1118] = {.lex_state = 36, .external_lex_state = 12}, - [1119] = {.lex_state = 36, .external_lex_state = 12}, - [1120] = {.lex_state = 36, .external_lex_state = 12}, - [1121] = {.lex_state = 36, .external_lex_state = 12}, - [1122] = {.lex_state = 36, .external_lex_state = 12}, - [1123] = {.lex_state = 36, .external_lex_state = 12}, - [1124] = {.lex_state = 36, .external_lex_state = 12}, - [1125] = {.lex_state = 36, .external_lex_state = 12}, - [1126] = {.lex_state = 36, .external_lex_state = 12}, - [1127] = {.lex_state = 36, .external_lex_state = 12}, - [1128] = {.lex_state = 36, .external_lex_state = 12}, - [1129] = {.lex_state = 36, .external_lex_state = 12}, - [1130] = {.lex_state = 36, .external_lex_state = 12}, - [1131] = {.lex_state = 36, .external_lex_state = 12}, - [1132] = {.lex_state = 36, .external_lex_state = 12}, - [1133] = {.lex_state = 36, .external_lex_state = 12}, - [1134] = {.lex_state = 36, .external_lex_state = 12}, - [1135] = {.lex_state = 36, .external_lex_state = 12}, - [1136] = {.lex_state = 36, .external_lex_state = 12}, - [1137] = {.lex_state = 25}, - [1138] = {.lex_state = 36, .external_lex_state = 12}, - [1139] = {.lex_state = 36, .external_lex_state = 12}, - [1140] = {.lex_state = 36, .external_lex_state = 12}, - [1141] = {.lex_state = 36, .external_lex_state = 12}, - [1142] = {.lex_state = 36, .external_lex_state = 12}, - [1143] = {.lex_state = 36, .external_lex_state = 12}, - [1144] = {.lex_state = 36, .external_lex_state = 12}, - [1145] = {.lex_state = 36, .external_lex_state = 12}, - [1146] = {.lex_state = 36, .external_lex_state = 12}, - [1147] = {.lex_state = 36, .external_lex_state = 12}, - [1148] = {.lex_state = 36, .external_lex_state = 12}, - [1149] = {.lex_state = 36, .external_lex_state = 12}, - [1150] = {.lex_state = 36, .external_lex_state = 12}, - [1151] = {.lex_state = 36, .external_lex_state = 12}, - [1152] = {.lex_state = 36, .external_lex_state = 12}, - [1153] = {.lex_state = 36, .external_lex_state = 12}, - [1154] = {.lex_state = 36, .external_lex_state = 12}, - [1155] = {.lex_state = 36, .external_lex_state = 12}, - [1156] = {.lex_state = 36, .external_lex_state = 12}, - [1157] = {.lex_state = 36, .external_lex_state = 12}, - [1158] = {.lex_state = 36, .external_lex_state = 12}, - [1159] = {.lex_state = 36, .external_lex_state = 12}, - [1160] = {.lex_state = 36, .external_lex_state = 12}, - [1161] = {.lex_state = 36, .external_lex_state = 12}, - [1162] = {.lex_state = 36, .external_lex_state = 12}, - [1163] = {.lex_state = 36, .external_lex_state = 12}, - [1164] = {.lex_state = 36, .external_lex_state = 12}, - [1165] = {.lex_state = 36, .external_lex_state = 12}, - [1166] = {.lex_state = 36, .external_lex_state = 12}, - [1167] = {.lex_state = 36, .external_lex_state = 12}, - [1168] = {.lex_state = 36, .external_lex_state = 12}, - [1169] = {.lex_state = 36, .external_lex_state = 12}, - [1170] = {.lex_state = 36, .external_lex_state = 12}, - [1171] = {.lex_state = 36, .external_lex_state = 12}, - [1172] = {.lex_state = 36, .external_lex_state = 12}, - [1173] = {.lex_state = 36, .external_lex_state = 12}, - [1174] = {.lex_state = 36, .external_lex_state = 12}, - [1175] = {.lex_state = 36, .external_lex_state = 12}, - [1176] = {.lex_state = 36, .external_lex_state = 12}, - [1177] = {.lex_state = 36, .external_lex_state = 12}, - [1178] = {.lex_state = 36, .external_lex_state = 12}, - [1179] = {.lex_state = 36, .external_lex_state = 12}, - [1180] = {.lex_state = 36, .external_lex_state = 12}, - [1181] = {.lex_state = 36, .external_lex_state = 12}, - [1182] = {.lex_state = 36, .external_lex_state = 12}, - [1183] = {.lex_state = 36, .external_lex_state = 12}, - [1184] = {.lex_state = 36, .external_lex_state = 12}, - [1185] = {.lex_state = 36, .external_lex_state = 12}, - [1186] = {.lex_state = 36, .external_lex_state = 12}, - [1187] = {.lex_state = 36, .external_lex_state = 12}, - [1188] = {.lex_state = 36, .external_lex_state = 12}, - [1189] = {.lex_state = 25}, - [1190] = {.lex_state = 36, .external_lex_state = 12}, - [1191] = {.lex_state = 36, .external_lex_state = 12}, - [1192] = {.lex_state = 36, .external_lex_state = 12}, - [1193] = {.lex_state = 36, .external_lex_state = 12}, - [1194] = {.lex_state = 36, .external_lex_state = 12}, - [1195] = {.lex_state = 36, .external_lex_state = 12}, - [1196] = {.lex_state = 36, .external_lex_state = 12}, - [1197] = {.lex_state = 36, .external_lex_state = 12}, - [1198] = {.lex_state = 36, .external_lex_state = 12}, - [1199] = {.lex_state = 36, .external_lex_state = 12}, - [1200] = {.lex_state = 36, .external_lex_state = 12}, - [1201] = {.lex_state = 36, .external_lex_state = 12}, - [1202] = {.lex_state = 36, .external_lex_state = 12}, - [1203] = {.lex_state = 36, .external_lex_state = 12}, - [1204] = {.lex_state = 36, .external_lex_state = 12}, - [1205] = {.lex_state = 36, .external_lex_state = 12}, - [1206] = {.lex_state = 36, .external_lex_state = 12}, - [1207] = {.lex_state = 36, .external_lex_state = 12}, - [1208] = {.lex_state = 36, .external_lex_state = 12}, - [1209] = {.lex_state = 36, .external_lex_state = 12}, - [1210] = {.lex_state = 36, .external_lex_state = 12}, - [1211] = {.lex_state = 36, .external_lex_state = 12}, - [1212] = {.lex_state = 36, .external_lex_state = 12}, - [1213] = {.lex_state = 36, .external_lex_state = 12}, - [1214] = {.lex_state = 36, .external_lex_state = 12}, - [1215] = {.lex_state = 25}, - [1216] = {.lex_state = 36, .external_lex_state = 12}, - [1217] = {.lex_state = 36, .external_lex_state = 12}, - [1218] = {.lex_state = 36, .external_lex_state = 12}, - [1219] = {.lex_state = 36, .external_lex_state = 12}, - [1220] = {.lex_state = 36, .external_lex_state = 12}, - [1221] = {.lex_state = 36, .external_lex_state = 12}, - [1222] = {.lex_state = 36, .external_lex_state = 12}, - [1223] = {.lex_state = 36, .external_lex_state = 12}, - [1224] = {.lex_state = 36, .external_lex_state = 12}, - [1225] = {.lex_state = 36, .external_lex_state = 12}, - [1226] = {.lex_state = 25}, - [1227] = {.lex_state = 36, .external_lex_state = 12}, - [1228] = {.lex_state = 36, .external_lex_state = 12}, - [1229] = {.lex_state = 36, .external_lex_state = 12}, - [1230] = {.lex_state = 36, .external_lex_state = 12}, - [1231] = {.lex_state = 36, .external_lex_state = 12}, - [1232] = {.lex_state = 36, .external_lex_state = 12}, - [1233] = {.lex_state = 36, .external_lex_state = 12}, - [1234] = {.lex_state = 36, .external_lex_state = 12}, - [1235] = {.lex_state = 36, .external_lex_state = 12}, - [1236] = {.lex_state = 36, .external_lex_state = 12}, - [1237] = {.lex_state = 36, .external_lex_state = 12}, - [1238] = {.lex_state = 36, .external_lex_state = 12}, - [1239] = {.lex_state = 25}, - [1240] = {.lex_state = 36, .external_lex_state = 12}, - [1241] = {.lex_state = 36, .external_lex_state = 12}, - [1242] = {.lex_state = 36, .external_lex_state = 12}, - [1243] = {.lex_state = 36, .external_lex_state = 12}, - [1244] = {.lex_state = 36, .external_lex_state = 12}, - [1245] = {.lex_state = 36, .external_lex_state = 12}, - [1246] = {.lex_state = 36, .external_lex_state = 12}, - [1247] = {.lex_state = 36, .external_lex_state = 12}, - [1248] = {.lex_state = 36, .external_lex_state = 12}, - [1249] = {.lex_state = 36, .external_lex_state = 12}, - [1250] = {.lex_state = 36, .external_lex_state = 12}, - [1251] = {.lex_state = 36, .external_lex_state = 12}, - [1252] = {.lex_state = 36, .external_lex_state = 12}, - [1253] = {.lex_state = 36, .external_lex_state = 12}, - [1254] = {.lex_state = 36, .external_lex_state = 12}, - [1255] = {.lex_state = 36, .external_lex_state = 12}, - [1256] = {.lex_state = 36, .external_lex_state = 12}, - [1257] = {.lex_state = 36, .external_lex_state = 12}, - [1258] = {.lex_state = 36, .external_lex_state = 12}, - [1259] = {.lex_state = 36, .external_lex_state = 12}, - [1260] = {.lex_state = 36, .external_lex_state = 12}, - [1261] = {.lex_state = 36, .external_lex_state = 12}, - [1262] = {.lex_state = 36, .external_lex_state = 12}, - [1263] = {.lex_state = 36, .external_lex_state = 12}, - [1264] = {.lex_state = 36, .external_lex_state = 12}, - [1265] = {.lex_state = 36, .external_lex_state = 12}, - [1266] = {.lex_state = 36, .external_lex_state = 12}, - [1267] = {.lex_state = 36, .external_lex_state = 12}, - [1268] = {.lex_state = 36, .external_lex_state = 12}, - [1269] = {.lex_state = 36, .external_lex_state = 12}, - [1270] = {.lex_state = 36, .external_lex_state = 12}, - [1271] = {.lex_state = 36, .external_lex_state = 12}, - [1272] = {.lex_state = 36, .external_lex_state = 12}, - [1273] = {.lex_state = 36, .external_lex_state = 12}, - [1274] = {.lex_state = 36, .external_lex_state = 12}, - [1275] = {.lex_state = 25}, - [1276] = {.lex_state = 36, .external_lex_state = 12}, - [1277] = {.lex_state = 36, .external_lex_state = 12}, - [1278] = {.lex_state = 36, .external_lex_state = 12}, - [1279] = {.lex_state = 36, .external_lex_state = 12}, - [1280] = {.lex_state = 36, .external_lex_state = 12}, - [1281] = {.lex_state = 36, .external_lex_state = 12}, - [1282] = {.lex_state = 36, .external_lex_state = 12}, - [1283] = {.lex_state = 36, .external_lex_state = 12}, - [1284] = {.lex_state = 36, .external_lex_state = 12}, - [1285] = {.lex_state = 36, .external_lex_state = 12}, - [1286] = {.lex_state = 36, .external_lex_state = 12}, - [1287] = {.lex_state = 36, .external_lex_state = 12}, - [1288] = {.lex_state = 36, .external_lex_state = 12}, - [1289] = {.lex_state = 36, .external_lex_state = 12}, - [1290] = {.lex_state = 25}, - [1291] = {.lex_state = 36, .external_lex_state = 12}, - [1292] = {.lex_state = 36, .external_lex_state = 12}, - [1293] = {.lex_state = 36, .external_lex_state = 12}, - [1294] = {.lex_state = 36, .external_lex_state = 12}, - [1295] = {.lex_state = 36, .external_lex_state = 12}, - [1296] = {.lex_state = 36, .external_lex_state = 12}, - [1297] = {.lex_state = 36, .external_lex_state = 12}, - [1298] = {.lex_state = 36, .external_lex_state = 12}, - [1299] = {.lex_state = 36, .external_lex_state = 12}, - [1300] = {.lex_state = 36, .external_lex_state = 12}, - [1301] = {.lex_state = 36, .external_lex_state = 12}, - [1302] = {.lex_state = 36, .external_lex_state = 12}, - [1303] = {.lex_state = 36, .external_lex_state = 12}, - [1304] = {.lex_state = 36, .external_lex_state = 12}, - [1305] = {.lex_state = 36, .external_lex_state = 12}, - [1306] = {.lex_state = 36, .external_lex_state = 12}, - [1307] = {.lex_state = 20, .external_lex_state = 12}, - [1308] = {.lex_state = 111, .external_lex_state = 6}, - [1309] = {.lex_state = 111, .external_lex_state = 6}, - [1310] = {.lex_state = 111, .external_lex_state = 6}, - [1311] = {.lex_state = 111, .external_lex_state = 6}, - [1312] = {.lex_state = 111, .external_lex_state = 6}, - [1313] = {.lex_state = 111, .external_lex_state = 6}, - [1314] = {.lex_state = 111, .external_lex_state = 6}, - [1315] = {.lex_state = 111, .external_lex_state = 6}, - [1316] = {.lex_state = 111, .external_lex_state = 8}, - [1317] = {.lex_state = 17, .external_lex_state = 10}, - [1318] = {.lex_state = 111, .external_lex_state = 6}, - [1319] = {.lex_state = 111, .external_lex_state = 6}, - [1320] = {.lex_state = 111, .external_lex_state = 6}, - [1321] = {.lex_state = 111, .external_lex_state = 8}, - [1322] = {.lex_state = 111, .external_lex_state = 6}, - [1323] = {.lex_state = 111, .external_lex_state = 6}, - [1324] = {.lex_state = 111, .external_lex_state = 6}, - [1325] = {.lex_state = 6, .external_lex_state = 15}, - [1326] = {.lex_state = 111, .external_lex_state = 6}, - [1327] = {.lex_state = 111, .external_lex_state = 6}, - [1328] = {.lex_state = 38, .external_lex_state = 2}, - [1329] = {.lex_state = 111, .external_lex_state = 6}, - [1330] = {.lex_state = 111, .external_lex_state = 6}, - [1331] = {.lex_state = 111, .external_lex_state = 6}, - [1332] = {.lex_state = 111, .external_lex_state = 6}, - [1333] = {.lex_state = 111, .external_lex_state = 6}, - [1334] = {.lex_state = 111, .external_lex_state = 6}, - [1335] = {.lex_state = 111, .external_lex_state = 6}, - [1336] = {.lex_state = 111, .external_lex_state = 6}, - [1337] = {.lex_state = 111, .external_lex_state = 6}, - [1338] = {.lex_state = 111, .external_lex_state = 8}, - [1339] = {.lex_state = 111, .external_lex_state = 8}, - [1340] = {.lex_state = 6, .external_lex_state = 15}, - [1341] = {.lex_state = 6, .external_lex_state = 15}, - [1342] = {.lex_state = 111, .external_lex_state = 6}, - [1343] = {.lex_state = 111, .external_lex_state = 6}, - [1344] = {.lex_state = 38, .external_lex_state = 16}, - [1345] = {.lex_state = 38, .external_lex_state = 16}, - [1346] = {.lex_state = 38, .external_lex_state = 16}, - [1347] = {.lex_state = 6, .external_lex_state = 10}, - [1348] = {.lex_state = 111, .external_lex_state = 8}, - [1349] = {.lex_state = 116, .external_lex_state = 10}, - [1350] = {.lex_state = 111, .external_lex_state = 8}, + [937] = {.lex_state = 36, .external_lex_state = 14}, + [938] = {.lex_state = 36, .external_lex_state = 14}, + [939] = {.lex_state = 36, .external_lex_state = 14}, + [940] = {.lex_state = 36, .external_lex_state = 14}, + [941] = {.lex_state = 36, .external_lex_state = 14}, + [942] = {.lex_state = 36, .external_lex_state = 14}, + [943] = {.lex_state = 25}, + [944] = {.lex_state = 36, .external_lex_state = 14}, + [945] = {.lex_state = 25}, + [946] = {.lex_state = 25}, + [947] = {.lex_state = 25}, + [948] = {.lex_state = 25}, + [949] = {.lex_state = 25}, + [950] = {.lex_state = 25}, + [951] = {.lex_state = 36, .external_lex_state = 14}, + [952] = {.lex_state = 36, .external_lex_state = 14}, + [953] = {.lex_state = 25}, + [954] = {.lex_state = 25}, + [955] = {.lex_state = 25}, + [956] = {.lex_state = 25}, + [957] = {.lex_state = 25}, + [958] = {.lex_state = 36, .external_lex_state = 14}, + [959] = {.lex_state = 36, .external_lex_state = 14}, + [960] = {.lex_state = 36, .external_lex_state = 14}, + [961] = {.lex_state = 36, .external_lex_state = 14}, + [962] = {.lex_state = 36, .external_lex_state = 14}, + [963] = {.lex_state = 36, .external_lex_state = 14}, + [964] = {.lex_state = 36, .external_lex_state = 14}, + [965] = {.lex_state = 36, .external_lex_state = 14}, + [966] = {.lex_state = 36, .external_lex_state = 14}, + [967] = {.lex_state = 36, .external_lex_state = 14}, + [968] = {.lex_state = 36, .external_lex_state = 14}, + [969] = {.lex_state = 36, .external_lex_state = 14}, + [970] = {.lex_state = 36, .external_lex_state = 14}, + [971] = {.lex_state = 36, .external_lex_state = 14}, + [972] = {.lex_state = 36, .external_lex_state = 14}, + [973] = {.lex_state = 36, .external_lex_state = 14}, + [974] = {.lex_state = 36, .external_lex_state = 14}, + [975] = {.lex_state = 36, .external_lex_state = 14}, + [976] = {.lex_state = 36, .external_lex_state = 14}, + [977] = {.lex_state = 36, .external_lex_state = 14}, + [978] = {.lex_state = 36, .external_lex_state = 14}, + [979] = {.lex_state = 36, .external_lex_state = 14}, + [980] = {.lex_state = 36, .external_lex_state = 14}, + [981] = {.lex_state = 36, .external_lex_state = 14}, + [982] = {.lex_state = 36, .external_lex_state = 14}, + [983] = {.lex_state = 36, .external_lex_state = 14}, + [984] = {.lex_state = 36, .external_lex_state = 14}, + [985] = {.lex_state = 36, .external_lex_state = 14}, + [986] = {.lex_state = 36, .external_lex_state = 14}, + [987] = {.lex_state = 36, .external_lex_state = 14}, + [988] = {.lex_state = 36, .external_lex_state = 14}, + [989] = {.lex_state = 36, .external_lex_state = 14}, + [990] = {.lex_state = 36, .external_lex_state = 14}, + [991] = {.lex_state = 36, .external_lex_state = 14}, + [992] = {.lex_state = 36, .external_lex_state = 14}, + [993] = {.lex_state = 36, .external_lex_state = 14}, + [994] = {.lex_state = 36, .external_lex_state = 14}, + [995] = {.lex_state = 36, .external_lex_state = 14}, + [996] = {.lex_state = 36, .external_lex_state = 14}, + [997] = {.lex_state = 25}, + [998] = {.lex_state = 36, .external_lex_state = 14}, + [999] = {.lex_state = 36, .external_lex_state = 14}, + [1000] = {.lex_state = 36, .external_lex_state = 14}, + [1001] = {.lex_state = 36, .external_lex_state = 14}, + [1002] = {.lex_state = 36, .external_lex_state = 14}, + [1003] = {.lex_state = 36, .external_lex_state = 14}, + [1004] = {.lex_state = 36, .external_lex_state = 14}, + [1005] = {.lex_state = 36, .external_lex_state = 14}, + [1006] = {.lex_state = 25}, + [1007] = {.lex_state = 36, .external_lex_state = 14}, + [1008] = {.lex_state = 36, .external_lex_state = 14}, + [1009] = {.lex_state = 36, .external_lex_state = 14}, + [1010] = {.lex_state = 36, .external_lex_state = 14}, + [1011] = {.lex_state = 36, .external_lex_state = 14}, + [1012] = {.lex_state = 36, .external_lex_state = 14}, + [1013] = {.lex_state = 36, .external_lex_state = 14}, + [1014] = {.lex_state = 36, .external_lex_state = 14}, + [1015] = {.lex_state = 36, .external_lex_state = 14}, + [1016] = {.lex_state = 36, .external_lex_state = 14}, + [1017] = {.lex_state = 36, .external_lex_state = 14}, + [1018] = {.lex_state = 36, .external_lex_state = 14}, + [1019] = {.lex_state = 36, .external_lex_state = 14}, + [1020] = {.lex_state = 36, .external_lex_state = 14}, + [1021] = {.lex_state = 36, .external_lex_state = 14}, + [1022] = {.lex_state = 36, .external_lex_state = 14}, + [1023] = {.lex_state = 36, .external_lex_state = 14}, + [1024] = {.lex_state = 36, .external_lex_state = 14}, + [1025] = {.lex_state = 36, .external_lex_state = 14}, + [1026] = {.lex_state = 36, .external_lex_state = 14}, + [1027] = {.lex_state = 36, .external_lex_state = 14}, + [1028] = {.lex_state = 36, .external_lex_state = 14}, + [1029] = {.lex_state = 36, .external_lex_state = 14}, + [1030] = {.lex_state = 36, .external_lex_state = 14}, + [1031] = {.lex_state = 36, .external_lex_state = 14}, + [1032] = {.lex_state = 36, .external_lex_state = 14}, + [1033] = {.lex_state = 36, .external_lex_state = 14}, + [1034] = {.lex_state = 36, .external_lex_state = 14}, + [1035] = {.lex_state = 36, .external_lex_state = 14}, + [1036] = {.lex_state = 36, .external_lex_state = 14}, + [1037] = {.lex_state = 36, .external_lex_state = 14}, + [1038] = {.lex_state = 36, .external_lex_state = 14}, + [1039] = {.lex_state = 36, .external_lex_state = 14}, + [1040] = {.lex_state = 36, .external_lex_state = 14}, + [1041] = {.lex_state = 36, .external_lex_state = 14}, + [1042] = {.lex_state = 36, .external_lex_state = 14}, + [1043] = {.lex_state = 36, .external_lex_state = 14}, + [1044] = {.lex_state = 36, .external_lex_state = 14}, + [1045] = {.lex_state = 36, .external_lex_state = 14}, + [1046] = {.lex_state = 36, .external_lex_state = 14}, + [1047] = {.lex_state = 36, .external_lex_state = 14}, + [1048] = {.lex_state = 36, .external_lex_state = 14}, + [1049] = {.lex_state = 36, .external_lex_state = 14}, + [1050] = {.lex_state = 36, .external_lex_state = 14}, + [1051] = {.lex_state = 36, .external_lex_state = 14}, + [1052] = {.lex_state = 36, .external_lex_state = 14}, + [1053] = {.lex_state = 36, .external_lex_state = 14}, + [1054] = {.lex_state = 36, .external_lex_state = 14}, + [1055] = {.lex_state = 36, .external_lex_state = 14}, + [1056] = {.lex_state = 36, .external_lex_state = 14}, + [1057] = {.lex_state = 36, .external_lex_state = 14}, + [1058] = {.lex_state = 36, .external_lex_state = 14}, + [1059] = {.lex_state = 36, .external_lex_state = 14}, + [1060] = {.lex_state = 36, .external_lex_state = 14}, + [1061] = {.lex_state = 36, .external_lex_state = 14}, + [1062] = {.lex_state = 36, .external_lex_state = 14}, + [1063] = {.lex_state = 36, .external_lex_state = 14}, + [1064] = {.lex_state = 36, .external_lex_state = 14}, + [1065] = {.lex_state = 36, .external_lex_state = 14}, + [1066] = {.lex_state = 36, .external_lex_state = 14}, + [1067] = {.lex_state = 36, .external_lex_state = 14}, + [1068] = {.lex_state = 36, .external_lex_state = 14}, + [1069] = {.lex_state = 36, .external_lex_state = 14}, + [1070] = {.lex_state = 36, .external_lex_state = 14}, + [1071] = {.lex_state = 36, .external_lex_state = 14}, + [1072] = {.lex_state = 36, .external_lex_state = 14}, + [1073] = {.lex_state = 36, .external_lex_state = 14}, + [1074] = {.lex_state = 36, .external_lex_state = 14}, + [1075] = {.lex_state = 36, .external_lex_state = 14}, + [1076] = {.lex_state = 36, .external_lex_state = 14}, + [1077] = {.lex_state = 36, .external_lex_state = 14}, + [1078] = {.lex_state = 36, .external_lex_state = 14}, + [1079] = {.lex_state = 36, .external_lex_state = 14}, + [1080] = {.lex_state = 36, .external_lex_state = 14}, + [1081] = {.lex_state = 36, .external_lex_state = 14}, + [1082] = {.lex_state = 36, .external_lex_state = 14}, + [1083] = {.lex_state = 36, .external_lex_state = 14}, + [1084] = {.lex_state = 36, .external_lex_state = 14}, + [1085] = {.lex_state = 36, .external_lex_state = 14}, + [1086] = {.lex_state = 36, .external_lex_state = 14}, + [1087] = {.lex_state = 36, .external_lex_state = 14}, + [1088] = {.lex_state = 36, .external_lex_state = 14}, + [1089] = {.lex_state = 36, .external_lex_state = 14}, + [1090] = {.lex_state = 36, .external_lex_state = 14}, + [1091] = {.lex_state = 36, .external_lex_state = 14}, + [1092] = {.lex_state = 36, .external_lex_state = 14}, + [1093] = {.lex_state = 36, .external_lex_state = 14}, + [1094] = {.lex_state = 36, .external_lex_state = 14}, + [1095] = {.lex_state = 36, .external_lex_state = 14}, + [1096] = {.lex_state = 36, .external_lex_state = 14}, + [1097] = {.lex_state = 36, .external_lex_state = 14}, + [1098] = {.lex_state = 36, .external_lex_state = 14}, + [1099] = {.lex_state = 36, .external_lex_state = 14}, + [1100] = {.lex_state = 36, .external_lex_state = 14}, + [1101] = {.lex_state = 36, .external_lex_state = 14}, + [1102] = {.lex_state = 36, .external_lex_state = 14}, + [1103] = {.lex_state = 36, .external_lex_state = 14}, + [1104] = {.lex_state = 36, .external_lex_state = 14}, + [1105] = {.lex_state = 36, .external_lex_state = 14}, + [1106] = {.lex_state = 36, .external_lex_state = 14}, + [1107] = {.lex_state = 36, .external_lex_state = 14}, + [1108] = {.lex_state = 36, .external_lex_state = 14}, + [1109] = {.lex_state = 36, .external_lex_state = 14}, + [1110] = {.lex_state = 36, .external_lex_state = 14}, + [1111] = {.lex_state = 36, .external_lex_state = 14}, + [1112] = {.lex_state = 36, .external_lex_state = 14}, + [1113] = {.lex_state = 36, .external_lex_state = 14}, + [1114] = {.lex_state = 36, .external_lex_state = 14}, + [1115] = {.lex_state = 36, .external_lex_state = 14}, + [1116] = {.lex_state = 25}, + [1117] = {.lex_state = 36, .external_lex_state = 14}, + [1118] = {.lex_state = 36, .external_lex_state = 14}, + [1119] = {.lex_state = 36, .external_lex_state = 14}, + [1120] = {.lex_state = 36, .external_lex_state = 14}, + [1121] = {.lex_state = 36, .external_lex_state = 14}, + [1122] = {.lex_state = 36, .external_lex_state = 14}, + [1123] = {.lex_state = 36, .external_lex_state = 14}, + [1124] = {.lex_state = 36, .external_lex_state = 14}, + [1125] = {.lex_state = 36, .external_lex_state = 14}, + [1126] = {.lex_state = 36, .external_lex_state = 14}, + [1127] = {.lex_state = 36, .external_lex_state = 14}, + [1128] = {.lex_state = 36, .external_lex_state = 14}, + [1129] = {.lex_state = 36, .external_lex_state = 14}, + [1130] = {.lex_state = 36, .external_lex_state = 14}, + [1131] = {.lex_state = 36, .external_lex_state = 14}, + [1132] = {.lex_state = 36, .external_lex_state = 14}, + [1133] = {.lex_state = 36, .external_lex_state = 14}, + [1134] = {.lex_state = 36, .external_lex_state = 14}, + [1135] = {.lex_state = 36, .external_lex_state = 14}, + [1136] = {.lex_state = 36, .external_lex_state = 14}, + [1137] = {.lex_state = 36, .external_lex_state = 14}, + [1138] = {.lex_state = 36, .external_lex_state = 14}, + [1139] = {.lex_state = 36, .external_lex_state = 14}, + [1140] = {.lex_state = 36, .external_lex_state = 14}, + [1141] = {.lex_state = 36, .external_lex_state = 14}, + [1142] = {.lex_state = 36, .external_lex_state = 14}, + [1143] = {.lex_state = 36, .external_lex_state = 14}, + [1144] = {.lex_state = 36, .external_lex_state = 14}, + [1145] = {.lex_state = 36, .external_lex_state = 14}, + [1146] = {.lex_state = 36, .external_lex_state = 14}, + [1147] = {.lex_state = 36, .external_lex_state = 14}, + [1148] = {.lex_state = 36, .external_lex_state = 14}, + [1149] = {.lex_state = 36, .external_lex_state = 14}, + [1150] = {.lex_state = 36, .external_lex_state = 14}, + [1151] = {.lex_state = 36, .external_lex_state = 14}, + [1152] = {.lex_state = 36, .external_lex_state = 14}, + [1153] = {.lex_state = 36, .external_lex_state = 14}, + [1154] = {.lex_state = 36, .external_lex_state = 14}, + [1155] = {.lex_state = 36, .external_lex_state = 14}, + [1156] = {.lex_state = 36, .external_lex_state = 14}, + [1157] = {.lex_state = 36, .external_lex_state = 14}, + [1158] = {.lex_state = 36, .external_lex_state = 14}, + [1159] = {.lex_state = 36, .external_lex_state = 14}, + [1160] = {.lex_state = 36, .external_lex_state = 14}, + [1161] = {.lex_state = 36, .external_lex_state = 14}, + [1162] = {.lex_state = 36, .external_lex_state = 14}, + [1163] = {.lex_state = 36, .external_lex_state = 14}, + [1164] = {.lex_state = 36, .external_lex_state = 14}, + [1165] = {.lex_state = 36, .external_lex_state = 14}, + [1166] = {.lex_state = 36, .external_lex_state = 14}, + [1167] = {.lex_state = 36, .external_lex_state = 14}, + [1168] = {.lex_state = 36, .external_lex_state = 14}, + [1169] = {.lex_state = 36, .external_lex_state = 14}, + [1170] = {.lex_state = 36, .external_lex_state = 14}, + [1171] = {.lex_state = 36, .external_lex_state = 14}, + [1172] = {.lex_state = 36, .external_lex_state = 14}, + [1173] = {.lex_state = 36, .external_lex_state = 14}, + [1174] = {.lex_state = 36, .external_lex_state = 14}, + [1175] = {.lex_state = 36, .external_lex_state = 14}, + [1176] = {.lex_state = 36, .external_lex_state = 14}, + [1177] = {.lex_state = 36, .external_lex_state = 14}, + [1178] = {.lex_state = 36, .external_lex_state = 14}, + [1179] = {.lex_state = 36, .external_lex_state = 14}, + [1180] = {.lex_state = 36, .external_lex_state = 14}, + [1181] = {.lex_state = 36, .external_lex_state = 14}, + [1182] = {.lex_state = 36, .external_lex_state = 14}, + [1183] = {.lex_state = 36, .external_lex_state = 14}, + [1184] = {.lex_state = 36, .external_lex_state = 14}, + [1185] = {.lex_state = 36, .external_lex_state = 14}, + [1186] = {.lex_state = 36, .external_lex_state = 14}, + [1187] = {.lex_state = 36, .external_lex_state = 14}, + [1188] = {.lex_state = 36, .external_lex_state = 14}, + [1189] = {.lex_state = 36, .external_lex_state = 14}, + [1190] = {.lex_state = 36, .external_lex_state = 14}, + [1191] = {.lex_state = 36, .external_lex_state = 14}, + [1192] = {.lex_state = 36, .external_lex_state = 14}, + [1193] = {.lex_state = 36, .external_lex_state = 14}, + [1194] = {.lex_state = 36, .external_lex_state = 14}, + [1195] = {.lex_state = 36, .external_lex_state = 14}, + [1196] = {.lex_state = 36, .external_lex_state = 14}, + [1197] = {.lex_state = 36, .external_lex_state = 14}, + [1198] = {.lex_state = 36, .external_lex_state = 14}, + [1199] = {.lex_state = 36, .external_lex_state = 14}, + [1200] = {.lex_state = 36, .external_lex_state = 14}, + [1201] = {.lex_state = 36, .external_lex_state = 14}, + [1202] = {.lex_state = 36, .external_lex_state = 14}, + [1203] = {.lex_state = 36, .external_lex_state = 14}, + [1204] = {.lex_state = 36, .external_lex_state = 14}, + [1205] = {.lex_state = 36, .external_lex_state = 14}, + [1206] = {.lex_state = 36, .external_lex_state = 14}, + [1207] = {.lex_state = 36, .external_lex_state = 14}, + [1208] = {.lex_state = 36, .external_lex_state = 14}, + [1209] = {.lex_state = 36, .external_lex_state = 14}, + [1210] = {.lex_state = 36, .external_lex_state = 14}, + [1211] = {.lex_state = 36, .external_lex_state = 14}, + [1212] = {.lex_state = 36, .external_lex_state = 14}, + [1213] = {.lex_state = 36, .external_lex_state = 14}, + [1214] = {.lex_state = 36, .external_lex_state = 14}, + [1215] = {.lex_state = 36, .external_lex_state = 14}, + [1216] = {.lex_state = 36, .external_lex_state = 14}, + [1217] = {.lex_state = 36, .external_lex_state = 14}, + [1218] = {.lex_state = 36, .external_lex_state = 14}, + [1219] = {.lex_state = 36, .external_lex_state = 14}, + [1220] = {.lex_state = 36, .external_lex_state = 14}, + [1221] = {.lex_state = 36, .external_lex_state = 14}, + [1222] = {.lex_state = 36, .external_lex_state = 14}, + [1223] = {.lex_state = 36, .external_lex_state = 14}, + [1224] = {.lex_state = 36, .external_lex_state = 14}, + [1225] = {.lex_state = 36, .external_lex_state = 14}, + [1226] = {.lex_state = 36, .external_lex_state = 14}, + [1227] = {.lex_state = 36, .external_lex_state = 14}, + [1228] = {.lex_state = 36, .external_lex_state = 14}, + [1229] = {.lex_state = 25}, + [1230] = {.lex_state = 36, .external_lex_state = 14}, + [1231] = {.lex_state = 36, .external_lex_state = 14}, + [1232] = {.lex_state = 36, .external_lex_state = 14}, + [1233] = {.lex_state = 36, .external_lex_state = 14}, + [1234] = {.lex_state = 36, .external_lex_state = 14}, + [1235] = {.lex_state = 36, .external_lex_state = 14}, + [1236] = {.lex_state = 36, .external_lex_state = 14}, + [1237] = {.lex_state = 36, .external_lex_state = 14}, + [1238] = {.lex_state = 36, .external_lex_state = 14}, + [1239] = {.lex_state = 36, .external_lex_state = 14}, + [1240] = {.lex_state = 25}, + [1241] = {.lex_state = 36, .external_lex_state = 14}, + [1242] = {.lex_state = 36, .external_lex_state = 14}, + [1243] = {.lex_state = 36, .external_lex_state = 14}, + [1244] = {.lex_state = 36, .external_lex_state = 14}, + [1245] = {.lex_state = 36, .external_lex_state = 14}, + [1246] = {.lex_state = 36, .external_lex_state = 14}, + [1247] = {.lex_state = 36, .external_lex_state = 14}, + [1248] = {.lex_state = 36, .external_lex_state = 14}, + [1249] = {.lex_state = 36, .external_lex_state = 14}, + [1250] = {.lex_state = 36, .external_lex_state = 14}, + [1251] = {.lex_state = 36, .external_lex_state = 14}, + [1252] = {.lex_state = 36, .external_lex_state = 14}, + [1253] = {.lex_state = 36, .external_lex_state = 14}, + [1254] = {.lex_state = 36, .external_lex_state = 14}, + [1255] = {.lex_state = 36, .external_lex_state = 14}, + [1256] = {.lex_state = 36, .external_lex_state = 14}, + [1257] = {.lex_state = 36, .external_lex_state = 14}, + [1258] = {.lex_state = 36, .external_lex_state = 14}, + [1259] = {.lex_state = 36, .external_lex_state = 14}, + [1260] = {.lex_state = 36, .external_lex_state = 14}, + [1261] = {.lex_state = 36, .external_lex_state = 14}, + [1262] = {.lex_state = 36, .external_lex_state = 14}, + [1263] = {.lex_state = 36, .external_lex_state = 14}, + [1264] = {.lex_state = 36, .external_lex_state = 14}, + [1265] = {.lex_state = 36, .external_lex_state = 14}, + [1266] = {.lex_state = 36, .external_lex_state = 14}, + [1267] = {.lex_state = 36, .external_lex_state = 14}, + [1268] = {.lex_state = 25}, + [1269] = {.lex_state = 36, .external_lex_state = 14}, + [1270] = {.lex_state = 36, .external_lex_state = 14}, + [1271] = {.lex_state = 36, .external_lex_state = 14}, + [1272] = {.lex_state = 36, .external_lex_state = 14}, + [1273] = {.lex_state = 36, .external_lex_state = 14}, + [1274] = {.lex_state = 36, .external_lex_state = 14}, + [1275] = {.lex_state = 36, .external_lex_state = 14}, + [1276] = {.lex_state = 25}, + [1277] = {.lex_state = 36, .external_lex_state = 14}, + [1278] = {.lex_state = 36, .external_lex_state = 14}, + [1279] = {.lex_state = 36, .external_lex_state = 14}, + [1280] = {.lex_state = 36, .external_lex_state = 14}, + [1281] = {.lex_state = 36, .external_lex_state = 14}, + [1282] = {.lex_state = 36, .external_lex_state = 14}, + [1283] = {.lex_state = 36, .external_lex_state = 14}, + [1284] = {.lex_state = 36, .external_lex_state = 14}, + [1285] = {.lex_state = 36, .external_lex_state = 14}, + [1286] = {.lex_state = 25}, + [1287] = {.lex_state = 36, .external_lex_state = 14}, + [1288] = {.lex_state = 36, .external_lex_state = 14}, + [1289] = {.lex_state = 36, .external_lex_state = 14}, + [1290] = {.lex_state = 36, .external_lex_state = 14}, + [1291] = {.lex_state = 36, .external_lex_state = 14}, + [1292] = {.lex_state = 36, .external_lex_state = 14}, + [1293] = {.lex_state = 36, .external_lex_state = 14}, + [1294] = {.lex_state = 36, .external_lex_state = 14}, + [1295] = {.lex_state = 36, .external_lex_state = 14}, + [1296] = {.lex_state = 36, .external_lex_state = 14}, + [1297] = {.lex_state = 36, .external_lex_state = 14}, + [1298] = {.lex_state = 36, .external_lex_state = 14}, + [1299] = {.lex_state = 36, .external_lex_state = 14}, + [1300] = {.lex_state = 36, .external_lex_state = 14}, + [1301] = {.lex_state = 36, .external_lex_state = 14}, + [1302] = {.lex_state = 36, .external_lex_state = 14}, + [1303] = {.lex_state = 36, .external_lex_state = 14}, + [1304] = {.lex_state = 36, .external_lex_state = 14}, + [1305] = {.lex_state = 36, .external_lex_state = 14}, + [1306] = {.lex_state = 36, .external_lex_state = 14}, + [1307] = {.lex_state = 36, .external_lex_state = 14}, + [1308] = {.lex_state = 36, .external_lex_state = 14}, + [1309] = {.lex_state = 36, .external_lex_state = 14}, + [1310] = {.lex_state = 36, .external_lex_state = 14}, + [1311] = {.lex_state = 36, .external_lex_state = 14}, + [1312] = {.lex_state = 36, .external_lex_state = 14}, + [1313] = {.lex_state = 36, .external_lex_state = 14}, + [1314] = {.lex_state = 36, .external_lex_state = 14}, + [1315] = {.lex_state = 36, .external_lex_state = 14}, + [1316] = {.lex_state = 36, .external_lex_state = 14}, + [1317] = {.lex_state = 36, .external_lex_state = 14}, + [1318] = {.lex_state = 36, .external_lex_state = 14}, + [1319] = {.lex_state = 20, .external_lex_state = 14}, + [1320] = {.lex_state = 110, .external_lex_state = 6}, + [1321] = {.lex_state = 110, .external_lex_state = 6}, + [1322] = {.lex_state = 110, .external_lex_state = 6}, + [1323] = {.lex_state = 110, .external_lex_state = 6}, + [1324] = {.lex_state = 110, .external_lex_state = 6}, + [1325] = {.lex_state = 110, .external_lex_state = 8}, + [1326] = {.lex_state = 110, .external_lex_state = 6}, + [1327] = {.lex_state = 110, .external_lex_state = 6}, + [1328] = {.lex_state = 110, .external_lex_state = 6}, + [1329] = {.lex_state = 110, .external_lex_state = 6}, + [1330] = {.lex_state = 110, .external_lex_state = 6}, + [1331] = {.lex_state = 110, .external_lex_state = 6}, + [1332] = {.lex_state = 110, .external_lex_state = 6}, + [1333] = {.lex_state = 17, .external_lex_state = 10}, + [1334] = {.lex_state = 110, .external_lex_state = 6}, + [1335] = {.lex_state = 38, .external_lex_state = 2}, + [1336] = {.lex_state = 110, .external_lex_state = 6}, + [1337] = {.lex_state = 110, .external_lex_state = 6}, + [1338] = {.lex_state = 110, .external_lex_state = 6}, + [1339] = {.lex_state = 110, .external_lex_state = 6}, + [1340] = {.lex_state = 110, .external_lex_state = 6}, + [1341] = {.lex_state = 110, .external_lex_state = 6}, + [1342] = {.lex_state = 6, .external_lex_state = 15}, + [1343] = {.lex_state = 110, .external_lex_state = 6}, + [1344] = {.lex_state = 110, .external_lex_state = 6}, + [1345] = {.lex_state = 110, .external_lex_state = 6}, + [1346] = {.lex_state = 110, .external_lex_state = 6}, + [1347] = {.lex_state = 110, .external_lex_state = 6}, + [1348] = {.lex_state = 110, .external_lex_state = 6}, + [1349] = {.lex_state = 110, .external_lex_state = 8}, + [1350] = {.lex_state = 110, .external_lex_state = 8}, [1351] = {.lex_state = 38, .external_lex_state = 16}, - [1352] = {.lex_state = 38, .external_lex_state = 16}, - [1353] = {.lex_state = 111, .external_lex_state = 6}, - [1354] = {.lex_state = 111, .external_lex_state = 8}, - [1355] = {.lex_state = 111, .external_lex_state = 6}, - [1356] = {.lex_state = 6, .external_lex_state = 15}, - [1357] = {.lex_state = 111, .external_lex_state = 6}, - [1358] = {.lex_state = 116, .external_lex_state = 10}, - [1359] = {.lex_state = 111, .external_lex_state = 8}, - [1360] = {.lex_state = 111, .external_lex_state = 8}, - [1361] = {.lex_state = 111, .external_lex_state = 8}, - [1362] = {.lex_state = 111, .external_lex_state = 8}, - [1363] = {.lex_state = 111, .external_lex_state = 6}, - [1364] = {.lex_state = 111, .external_lex_state = 8}, - [1365] = {.lex_state = 111, .external_lex_state = 8}, - [1366] = {.lex_state = 111, .external_lex_state = 8}, - [1367] = {.lex_state = 111, .external_lex_state = 8}, - [1368] = {.lex_state = 111, .external_lex_state = 8}, - [1369] = {.lex_state = 111, .external_lex_state = 8}, - [1370] = {.lex_state = 111, .external_lex_state = 8}, - [1371] = {.lex_state = 111, .external_lex_state = 8}, - [1372] = {.lex_state = 111, .external_lex_state = 8}, - [1373] = {.lex_state = 111, .external_lex_state = 8}, - [1374] = {.lex_state = 116, .external_lex_state = 10}, - [1375] = {.lex_state = 111, .external_lex_state = 8}, - [1376] = {.lex_state = 111, .external_lex_state = 8}, - [1377] = {.lex_state = 111, .external_lex_state = 8}, - [1378] = {.lex_state = 111, .external_lex_state = 8}, - [1379] = {.lex_state = 111, .external_lex_state = 8}, - [1380] = {.lex_state = 111, .external_lex_state = 8}, - [1381] = {.lex_state = 111, .external_lex_state = 8}, - [1382] = {.lex_state = 111, .external_lex_state = 8}, - [1383] = {.lex_state = 111, .external_lex_state = 8}, - [1384] = {.lex_state = 111, .external_lex_state = 8}, - [1385] = {.lex_state = 111, .external_lex_state = 8}, - [1386] = {.lex_state = 111, .external_lex_state = 8}, - [1387] = {.lex_state = 111, .external_lex_state = 6}, - [1388] = {.lex_state = 6, .external_lex_state = 10}, - [1389] = {.lex_state = 6, .external_lex_state = 10}, - [1390] = {.lex_state = 111, .external_lex_state = 6}, - [1391] = {.lex_state = 111, .external_lex_state = 6}, - [1392] = {.lex_state = 111, .external_lex_state = 6}, - [1393] = {.lex_state = 111, .external_lex_state = 6}, - [1394] = {.lex_state = 111, .external_lex_state = 6}, - [1395] = {.lex_state = 111, .external_lex_state = 6}, - [1396] = {.lex_state = 111, .external_lex_state = 6}, - [1397] = {.lex_state = 111, .external_lex_state = 6}, - [1398] = {.lex_state = 111, .external_lex_state = 6}, - [1399] = {.lex_state = 111, .external_lex_state = 6}, - [1400] = {.lex_state = 111, .external_lex_state = 6}, - [1401] = {.lex_state = 111, .external_lex_state = 8}, - [1402] = {.lex_state = 111, .external_lex_state = 8}, - [1403] = {.lex_state = 111, .external_lex_state = 6}, - [1404] = {.lex_state = 111, .external_lex_state = 6}, - [1405] = {.lex_state = 111, .external_lex_state = 6}, - [1406] = {.lex_state = 111, .external_lex_state = 6}, - [1407] = {.lex_state = 111, .external_lex_state = 6}, - [1408] = {.lex_state = 111, .external_lex_state = 6}, - [1409] = {.lex_state = 111, .external_lex_state = 8}, - [1410] = {.lex_state = 111, .external_lex_state = 6}, - [1411] = {.lex_state = 6, .external_lex_state = 15}, - [1412] = {.lex_state = 6, .external_lex_state = 15}, - [1413] = {.lex_state = 6, .external_lex_state = 15}, - [1414] = {.lex_state = 6, .external_lex_state = 15}, - [1415] = {.lex_state = 111, .external_lex_state = 6}, - [1416] = {.lex_state = 111, .external_lex_state = 6}, - [1417] = {.lex_state = 111, .external_lex_state = 6}, - [1418] = {.lex_state = 111, .external_lex_state = 6}, - [1419] = {.lex_state = 111, .external_lex_state = 6}, - [1420] = {.lex_state = 41}, - [1421] = {.lex_state = 31, .external_lex_state = 17}, - [1422] = {.lex_state = 6, .external_lex_state = 15}, - [1423] = {.lex_state = 6, .external_lex_state = 15}, + [1352] = {.lex_state = 110, .external_lex_state = 8}, + [1353] = {.lex_state = 110, .external_lex_state = 8}, + [1354] = {.lex_state = 110, .external_lex_state = 8}, + [1355] = {.lex_state = 110, .external_lex_state = 8}, + [1356] = {.lex_state = 116, .external_lex_state = 10}, + [1357] = {.lex_state = 110, .external_lex_state = 8}, + [1358] = {.lex_state = 110, .external_lex_state = 6}, + [1359] = {.lex_state = 38, .external_lex_state = 16}, + [1360] = {.lex_state = 38, .external_lex_state = 16}, + [1361] = {.lex_state = 116, .external_lex_state = 10}, + [1362] = {.lex_state = 110, .external_lex_state = 6}, + [1363] = {.lex_state = 110, .external_lex_state = 6}, + [1364] = {.lex_state = 110, .external_lex_state = 8}, + [1365] = {.lex_state = 110, .external_lex_state = 8}, + [1366] = {.lex_state = 110, .external_lex_state = 8}, + [1367] = {.lex_state = 6, .external_lex_state = 10}, + [1368] = {.lex_state = 110, .external_lex_state = 8}, + [1369] = {.lex_state = 110, .external_lex_state = 8}, + [1370] = {.lex_state = 110, .external_lex_state = 8}, + [1371] = {.lex_state = 38, .external_lex_state = 16}, + [1372] = {.lex_state = 116, .external_lex_state = 10}, + [1373] = {.lex_state = 110, .external_lex_state = 8}, + [1374] = {.lex_state = 110, .external_lex_state = 8}, + [1375] = {.lex_state = 110, .external_lex_state = 8}, + [1376] = {.lex_state = 110, .external_lex_state = 8}, + [1377] = {.lex_state = 110, .external_lex_state = 8}, + [1378] = {.lex_state = 110, .external_lex_state = 8}, + [1379] = {.lex_state = 110, .external_lex_state = 8}, + [1380] = {.lex_state = 110, .external_lex_state = 8}, + [1381] = {.lex_state = 6, .external_lex_state = 15}, + [1382] = {.lex_state = 6, .external_lex_state = 15}, + [1383] = {.lex_state = 110, .external_lex_state = 8}, + [1384] = {.lex_state = 110, .external_lex_state = 8}, + [1385] = {.lex_state = 110, .external_lex_state = 8}, + [1386] = {.lex_state = 38, .external_lex_state = 16}, + [1387] = {.lex_state = 110, .external_lex_state = 6}, + [1388] = {.lex_state = 110, .external_lex_state = 6}, + [1389] = {.lex_state = 6, .external_lex_state = 15}, + [1390] = {.lex_state = 110, .external_lex_state = 6}, + [1391] = {.lex_state = 110, .external_lex_state = 8}, + [1392] = {.lex_state = 110, .external_lex_state = 8}, + [1393] = {.lex_state = 110, .external_lex_state = 6}, + [1394] = {.lex_state = 6, .external_lex_state = 10}, + [1395] = {.lex_state = 110, .external_lex_state = 8}, + [1396] = {.lex_state = 110, .external_lex_state = 8}, + [1397] = {.lex_state = 110, .external_lex_state = 8}, + [1398] = {.lex_state = 110, .external_lex_state = 8}, + [1399] = {.lex_state = 110, .external_lex_state = 8}, + [1400] = {.lex_state = 110, .external_lex_state = 8}, + [1401] = {.lex_state = 110, .external_lex_state = 8}, + [1402] = {.lex_state = 110, .external_lex_state = 6}, + [1403] = {.lex_state = 41}, + [1404] = {.lex_state = 110, .external_lex_state = 6}, + [1405] = {.lex_state = 110, .external_lex_state = 6}, + [1406] = {.lex_state = 110, .external_lex_state = 6}, + [1407] = {.lex_state = 110, .external_lex_state = 6}, + [1408] = {.lex_state = 110, .external_lex_state = 6}, + [1409] = {.lex_state = 41}, + [1410] = {.lex_state = 41}, + [1411] = {.lex_state = 110, .external_lex_state = 8}, + [1412] = {.lex_state = 110, .external_lex_state = 8}, + [1413] = {.lex_state = 110, .external_lex_state = 6}, + [1414] = {.lex_state = 110, .external_lex_state = 6}, + [1415] = {.lex_state = 110, .external_lex_state = 6}, + [1416] = {.lex_state = 41}, + [1417] = {.lex_state = 41}, + [1418] = {.lex_state = 110, .external_lex_state = 6}, + [1419] = {.lex_state = 38, .external_lex_state = 16}, + [1420] = {.lex_state = 38, .external_lex_state = 16}, + [1421] = {.lex_state = 38, .external_lex_state = 16}, + [1422] = {.lex_state = 38, .external_lex_state = 16}, + [1423] = {.lex_state = 38, .external_lex_state = 16}, [1424] = {.lex_state = 38, .external_lex_state = 16}, - [1425] = {.lex_state = 38, .external_lex_state = 16}, - [1426] = {.lex_state = 111, .external_lex_state = 6}, - [1427] = {.lex_state = 111, .external_lex_state = 6}, - [1428] = {.lex_state = 111, .external_lex_state = 6}, - [1429] = {.lex_state = 111, .external_lex_state = 6}, - [1430] = {.lex_state = 111, .external_lex_state = 6}, - [1431] = {.lex_state = 38, .external_lex_state = 2}, - [1432] = {.lex_state = 41}, - [1433] = {.lex_state = 38, .external_lex_state = 2}, + [1425] = {.lex_state = 6, .external_lex_state = 15}, + [1426] = {.lex_state = 110, .external_lex_state = 6}, + [1427] = {.lex_state = 110, .external_lex_state = 6}, + [1428] = {.lex_state = 110, .external_lex_state = 6}, + [1429] = {.lex_state = 110, .external_lex_state = 6}, + [1430] = {.lex_state = 110, .external_lex_state = 6}, + [1431] = {.lex_state = 38, .external_lex_state = 16}, + [1432] = {.lex_state = 38, .external_lex_state = 16}, + [1433] = {.lex_state = 38, .external_lex_state = 16}, [1434] = {.lex_state = 38, .external_lex_state = 16}, [1435] = {.lex_state = 38, .external_lex_state = 16}, - [1436] = {.lex_state = 38, .external_lex_state = 16}, - [1437] = {.lex_state = 111, .external_lex_state = 6}, - [1438] = {.lex_state = 111, .external_lex_state = 6}, + [1436] = {.lex_state = 110, .external_lex_state = 8}, + [1437] = {.lex_state = 110, .external_lex_state = 6}, + [1438] = {.lex_state = 110, .external_lex_state = 6}, [1439] = {.lex_state = 38, .external_lex_state = 16}, - [1440] = {.lex_state = 111, .external_lex_state = 6}, + [1440] = {.lex_state = 38, .external_lex_state = 16}, [1441] = {.lex_state = 38, .external_lex_state = 16}, - [1442] = {.lex_state = 111, .external_lex_state = 6}, - [1443] = {.lex_state = 111, .external_lex_state = 6}, - [1444] = {.lex_state = 6, .external_lex_state = 15}, - [1445] = {.lex_state = 6, .external_lex_state = 15}, - [1446] = {.lex_state = 38, .external_lex_state = 16}, - [1447] = {.lex_state = 38, .external_lex_state = 16}, - [1448] = {.lex_state = 38, .external_lex_state = 2}, - [1449] = {.lex_state = 111, .external_lex_state = 6}, - [1450] = {.lex_state = 31, .external_lex_state = 17}, - [1451] = {.lex_state = 6, .external_lex_state = 15}, - [1452] = {.lex_state = 111, .external_lex_state = 8}, - [1453] = {.lex_state = 111, .external_lex_state = 6}, - [1454] = {.lex_state = 111, .external_lex_state = 6}, - [1455] = {.lex_state = 111, .external_lex_state = 6}, - [1456] = {.lex_state = 6, .external_lex_state = 15}, - [1457] = {.lex_state = 111, .external_lex_state = 6}, - [1458] = {.lex_state = 34, .external_lex_state = 17}, - [1459] = {.lex_state = 6, .external_lex_state = 15}, + [1442] = {.lex_state = 110, .external_lex_state = 6}, + [1443] = {.lex_state = 110, .external_lex_state = 6}, + [1444] = {.lex_state = 38, .external_lex_state = 16}, + [1445] = {.lex_state = 38, .external_lex_state = 16}, + [1446] = {.lex_state = 110, .external_lex_state = 6}, + [1447] = {.lex_state = 110, .external_lex_state = 6}, + [1448] = {.lex_state = 38, .external_lex_state = 16}, + [1449] = {.lex_state = 6, .external_lex_state = 10}, + [1450] = {.lex_state = 110, .external_lex_state = 8}, + [1451] = {.lex_state = 38, .external_lex_state = 16}, + [1452] = {.lex_state = 110, .external_lex_state = 6}, + [1453] = {.lex_state = 110, .external_lex_state = 8}, + [1454] = {.lex_state = 110, .external_lex_state = 6}, + [1455] = {.lex_state = 110, .external_lex_state = 6}, + [1456] = {.lex_state = 110, .external_lex_state = 6}, + [1457] = {.lex_state = 38, .external_lex_state = 16}, + [1458] = {.lex_state = 38, .external_lex_state = 16}, + [1459] = {.lex_state = 110, .external_lex_state = 8}, [1460] = {.lex_state = 6, .external_lex_state = 15}, - [1461] = {.lex_state = 38, .external_lex_state = 16}, + [1461] = {.lex_state = 6, .external_lex_state = 15}, [1462] = {.lex_state = 6, .external_lex_state = 15}, - [1463] = {.lex_state = 111, .external_lex_state = 6}, + [1463] = {.lex_state = 6, .external_lex_state = 15}, [1464] = {.lex_state = 6, .external_lex_state = 15}, [1465] = {.lex_state = 6, .external_lex_state = 15}, [1466] = {.lex_state = 6, .external_lex_state = 15}, - [1467] = {.lex_state = 6, .external_lex_state = 15}, - [1468] = {.lex_state = 41}, - [1469] = {.lex_state = 41}, - [1470] = {.lex_state = 111, .external_lex_state = 8}, - [1471] = {.lex_state = 111, .external_lex_state = 6}, - [1472] = {.lex_state = 6, .external_lex_state = 15}, - [1473] = {.lex_state = 6, .external_lex_state = 15}, - [1474] = {.lex_state = 111, .external_lex_state = 6}, - [1475] = {.lex_state = 6, .external_lex_state = 15}, - [1476] = {.lex_state = 6, .external_lex_state = 15}, + [1467] = {.lex_state = 31, .external_lex_state = 17}, + [1468] = {.lex_state = 6, .external_lex_state = 15}, + [1469] = {.lex_state = 6, .external_lex_state = 15}, + [1470] = {.lex_state = 110, .external_lex_state = 6}, + [1471] = {.lex_state = 110, .external_lex_state = 6}, + [1472] = {.lex_state = 110, .external_lex_state = 6}, + [1473] = {.lex_state = 110, .external_lex_state = 6}, + [1474] = {.lex_state = 6, .external_lex_state = 15}, + [1475] = {.lex_state = 110, .external_lex_state = 6}, + [1476] = {.lex_state = 110, .external_lex_state = 6}, [1477] = {.lex_state = 6, .external_lex_state = 15}, [1478] = {.lex_state = 6, .external_lex_state = 15}, - [1479] = {.lex_state = 111, .external_lex_state = 6}, - [1480] = {.lex_state = 111, .external_lex_state = 6}, - [1481] = {.lex_state = 111, .external_lex_state = 8}, + [1479] = {.lex_state = 38, .external_lex_state = 16}, + [1480] = {.lex_state = 6, .external_lex_state = 15}, + [1481] = {.lex_state = 6, .external_lex_state = 15}, [1482] = {.lex_state = 6, .external_lex_state = 15}, - [1483] = {.lex_state = 6, .external_lex_state = 15}, - [1484] = {.lex_state = 38, .external_lex_state = 16}, - [1485] = {.lex_state = 38, .external_lex_state = 16}, - [1486] = {.lex_state = 38, .external_lex_state = 16}, - [1487] = {.lex_state = 38, .external_lex_state = 16}, + [1483] = {.lex_state = 110, .external_lex_state = 6}, + [1484] = {.lex_state = 6, .external_lex_state = 15}, + [1485] = {.lex_state = 110, .external_lex_state = 6}, + [1486] = {.lex_state = 6, .external_lex_state = 15}, + [1487] = {.lex_state = 32, .external_lex_state = 17}, [1488] = {.lex_state = 38, .external_lex_state = 16}, - [1489] = {.lex_state = 38, .external_lex_state = 16}, - [1490] = {.lex_state = 111, .external_lex_state = 6}, + [1489] = {.lex_state = 110, .external_lex_state = 6}, + [1490] = {.lex_state = 110, .external_lex_state = 6}, [1491] = {.lex_state = 38, .external_lex_state = 16}, - [1492] = {.lex_state = 31, .external_lex_state = 17}, - [1493] = {.lex_state = 38, .external_lex_state = 16}, - [1494] = {.lex_state = 38, .external_lex_state = 16}, - [1495] = {.lex_state = 111, .external_lex_state = 8}, - [1496] = {.lex_state = 38, .external_lex_state = 16}, + [1492] = {.lex_state = 6, .external_lex_state = 15}, + [1493] = {.lex_state = 6, .external_lex_state = 15}, + [1494] = {.lex_state = 38, .external_lex_state = 2}, + [1495] = {.lex_state = 6, .external_lex_state = 15}, + [1496] = {.lex_state = 110, .external_lex_state = 6}, [1497] = {.lex_state = 38, .external_lex_state = 16}, - [1498] = {.lex_state = 111, .external_lex_state = 6}, - [1499] = {.lex_state = 38, .external_lex_state = 16}, - [1500] = {.lex_state = 38, .external_lex_state = 16}, - [1501] = {.lex_state = 111, .external_lex_state = 6}, - [1502] = {.lex_state = 41}, + [1498] = {.lex_state = 110, .external_lex_state = 8}, + [1499] = {.lex_state = 110, .external_lex_state = 6}, + [1500] = {.lex_state = 110, .external_lex_state = 8}, + [1501] = {.lex_state = 6, .external_lex_state = 15}, + [1502] = {.lex_state = 31, .external_lex_state = 17}, [1503] = {.lex_state = 38, .external_lex_state = 16}, - [1504] = {.lex_state = 41}, - [1505] = {.lex_state = 38, .external_lex_state = 16}, + [1504] = {.lex_state = 38, .external_lex_state = 16}, + [1505] = {.lex_state = 110, .external_lex_state = 8}, [1506] = {.lex_state = 38, .external_lex_state = 16}, - [1507] = {.lex_state = 41}, - [1508] = {.lex_state = 41}, - [1509] = {.lex_state = 111, .external_lex_state = 8}, - [1510] = {.lex_state = 111, .external_lex_state = 6}, - [1511] = {.lex_state = 111, .external_lex_state = 8}, - [1512] = {.lex_state = 111, .external_lex_state = 6}, - [1513] = {.lex_state = 111, .external_lex_state = 6}, - [1514] = {.lex_state = 31, .external_lex_state = 17}, - [1515] = {.lex_state = 31, .external_lex_state = 17}, - [1516] = {.lex_state = 111, .external_lex_state = 8}, - [1517] = {.lex_state = 38, .external_lex_state = 2}, - [1518] = {.lex_state = 111, .external_lex_state = 8}, - [1519] = {.lex_state = 32, .external_lex_state = 18}, - [1520] = {.lex_state = 111, .external_lex_state = 8}, - [1521] = {.lex_state = 38, .external_lex_state = 2}, - [1522] = {.lex_state = 38, .external_lex_state = 2}, - [1523] = {.lex_state = 38, .external_lex_state = 2}, - [1524] = {.lex_state = 6, .external_lex_state = 10}, - [1525] = {.lex_state = 31, .external_lex_state = 17}, - [1526] = {.lex_state = 111, .external_lex_state = 8}, - [1527] = {.lex_state = 111, .external_lex_state = 8}, - [1528] = {.lex_state = 111, .external_lex_state = 8}, - [1529] = {.lex_state = 31, .external_lex_state = 17}, - [1530] = {.lex_state = 31, .external_lex_state = 17}, - [1531] = {.lex_state = 38, .external_lex_state = 2}, - [1532] = {.lex_state = 6, .external_lex_state = 10}, - [1533] = {.lex_state = 111, .external_lex_state = 8}, - [1534] = {.lex_state = 38, .external_lex_state = 2}, - [1535] = {.lex_state = 33}, - [1536] = {.lex_state = 6, .external_lex_state = 10}, - [1537] = {.lex_state = 111, .external_lex_state = 8}, - [1538] = {.lex_state = 38, .external_lex_state = 2}, - [1539] = {.lex_state = 33, .external_lex_state = 17}, - [1540] = {.lex_state = 6, .external_lex_state = 10}, + [1507] = {.lex_state = 110, .external_lex_state = 6}, + [1508] = {.lex_state = 110, .external_lex_state = 6}, + [1509] = {.lex_state = 41}, + [1510] = {.lex_state = 6, .external_lex_state = 15}, + [1511] = {.lex_state = 110, .external_lex_state = 6}, + [1512] = {.lex_state = 41}, + [1513] = {.lex_state = 6, .external_lex_state = 15}, + [1514] = {.lex_state = 110, .external_lex_state = 6}, + [1515] = {.lex_state = 110, .external_lex_state = 6}, + [1516] = {.lex_state = 110, .external_lex_state = 6}, + [1517] = {.lex_state = 110, .external_lex_state = 6}, + [1518] = {.lex_state = 110, .external_lex_state = 6}, + [1519] = {.lex_state = 110, .external_lex_state = 6}, + [1520] = {.lex_state = 110, .external_lex_state = 6}, + [1521] = {.lex_state = 110, .external_lex_state = 6}, + [1522] = {.lex_state = 31, .external_lex_state = 17}, + [1523] = {.lex_state = 110, .external_lex_state = 6}, + [1524] = {.lex_state = 6, .external_lex_state = 15}, + [1525] = {.lex_state = 38, .external_lex_state = 2}, + [1526] = {.lex_state = 6, .external_lex_state = 15}, + [1527] = {.lex_state = 38, .external_lex_state = 2}, + [1528] = {.lex_state = 41}, + [1529] = {.lex_state = 110, .external_lex_state = 8}, + [1530] = {.lex_state = 110, .external_lex_state = 8}, + [1531] = {.lex_state = 31, .external_lex_state = 17}, + [1532] = {.lex_state = 31, .external_lex_state = 17}, + [1533] = {.lex_state = 38, .external_lex_state = 2}, + [1534] = {.lex_state = 31, .external_lex_state = 17}, + [1535] = {.lex_state = 38}, + [1536] = {.lex_state = 31, .external_lex_state = 17}, + [1537] = {.lex_state = 38, .external_lex_state = 2}, + [1538] = {.lex_state = 6, .external_lex_state = 10}, + [1539] = {.lex_state = 38, .external_lex_state = 2}, + [1540] = {.lex_state = 38, .external_lex_state = 2}, [1541] = {.lex_state = 38}, - [1542] = {.lex_state = 38}, - [1543] = {.lex_state = 38}, - [1544] = {.lex_state = 38}, - [1545] = {.lex_state = 111, .external_lex_state = 8}, - [1546] = {.lex_state = 111, .external_lex_state = 8}, + [1542] = {.lex_state = 38, .external_lex_state = 2}, + [1543] = {.lex_state = 31, .external_lex_state = 17}, + [1544] = {.lex_state = 38, .external_lex_state = 2}, + [1545] = {.lex_state = 38, .external_lex_state = 2}, + [1546] = {.lex_state = 31, .external_lex_state = 17}, [1547] = {.lex_state = 31, .external_lex_state = 17}, - [1548] = {.lex_state = 111, .external_lex_state = 8}, + [1548] = {.lex_state = 38, .external_lex_state = 18}, [1549] = {.lex_state = 31, .external_lex_state = 17}, - [1550] = {.lex_state = 38, .external_lex_state = 2}, - [1551] = {.lex_state = 111, .external_lex_state = 8}, - [1552] = {.lex_state = 111, .external_lex_state = 8}, - [1553] = {.lex_state = 111, .external_lex_state = 8}, - [1554] = {.lex_state = 38}, - [1555] = {.lex_state = 6, .external_lex_state = 10}, - [1556] = {.lex_state = 38, .external_lex_state = 2}, - [1557] = {.lex_state = 38, .external_lex_state = 19}, - [1558] = {.lex_state = 111, .external_lex_state = 8}, - [1559] = {.lex_state = 111, .external_lex_state = 8}, - [1560] = {.lex_state = 111, .external_lex_state = 8}, - [1561] = {.lex_state = 34}, - [1562] = {.lex_state = 111, .external_lex_state = 8}, - [1563] = {.lex_state = 38, .external_lex_state = 2}, - [1564] = {.lex_state = 111, .external_lex_state = 8}, - [1565] = {.lex_state = 111, .external_lex_state = 8}, - [1566] = {.lex_state = 111, .external_lex_state = 8}, - [1567] = {.lex_state = 111, .external_lex_state = 8}, - [1568] = {.lex_state = 111, .external_lex_state = 8}, - [1569] = {.lex_state = 111, .external_lex_state = 8}, - [1570] = {.lex_state = 111, .external_lex_state = 8}, - [1571] = {.lex_state = 111, .external_lex_state = 6}, - [1572] = {.lex_state = 38, .external_lex_state = 2}, - [1573] = {.lex_state = 38, .external_lex_state = 2}, - [1574] = {.lex_state = 21}, + [1550] = {.lex_state = 110, .external_lex_state = 6}, + [1551] = {.lex_state = 38, .external_lex_state = 2}, + [1552] = {.lex_state = 31, .external_lex_state = 17}, + [1553] = {.lex_state = 31, .external_lex_state = 17}, + [1554] = {.lex_state = 33}, + [1555] = {.lex_state = 110, .external_lex_state = 8}, + [1556] = {.lex_state = 31, .external_lex_state = 17}, + [1557] = {.lex_state = 32}, + [1558] = {.lex_state = 110, .external_lex_state = 8}, + [1559] = {.lex_state = 110, .external_lex_state = 8}, + [1560] = {.lex_state = 6, .external_lex_state = 10}, + [1561] = {.lex_state = 31, .external_lex_state = 17}, + [1562] = {.lex_state = 38, .external_lex_state = 2}, + [1563] = {.lex_state = 110, .external_lex_state = 8}, + [1564] = {.lex_state = 33, .external_lex_state = 17}, + [1565] = {.lex_state = 38, .external_lex_state = 18}, + [1566] = {.lex_state = 31, .external_lex_state = 17}, + [1567] = {.lex_state = 38, .external_lex_state = 2}, + [1568] = {.lex_state = 38}, + [1569] = {.lex_state = 110, .external_lex_state = 8}, + [1570] = {.lex_state = 6, .external_lex_state = 10}, + [1571] = {.lex_state = 110, .external_lex_state = 8}, + [1572] = {.lex_state = 38}, + [1573] = {.lex_state = 38}, + [1574] = {.lex_state = 110, .external_lex_state = 8}, [1575] = {.lex_state = 38, .external_lex_state = 2}, - [1576] = {.lex_state = 38, .external_lex_state = 2}, - [1577] = {.lex_state = 38, .external_lex_state = 19}, - [1578] = {.lex_state = 38, .external_lex_state = 19}, - [1579] = {.lex_state = 38, .external_lex_state = 2}, + [1576] = {.lex_state = 6, .external_lex_state = 10}, + [1577] = {.lex_state = 110, .external_lex_state = 8}, + [1578] = {.lex_state = 38}, + [1579] = {.lex_state = 38}, [1580] = {.lex_state = 38, .external_lex_state = 2}, - [1581] = {.lex_state = 6, .external_lex_state = 10}, - [1582] = {.lex_state = 38}, - [1583] = {.lex_state = 38, .external_lex_state = 19}, + [1581] = {.lex_state = 110, .external_lex_state = 8}, + [1582] = {.lex_state = 110, .external_lex_state = 8}, + [1583] = {.lex_state = 110, .external_lex_state = 8}, [1584] = {.lex_state = 38, .external_lex_state = 2}, - [1585] = {.lex_state = 6, .external_lex_state = 10}, - [1586] = {.lex_state = 38, .external_lex_state = 2}, - [1587] = {.lex_state = 38, .external_lex_state = 2}, - [1588] = {.lex_state = 31, .external_lex_state = 17}, - [1589] = {.lex_state = 32, .external_lex_state = 17}, - [1590] = {.lex_state = 38, .external_lex_state = 2}, - [1591] = {.lex_state = 38, .external_lex_state = 2}, - [1592] = {.lex_state = 31, .external_lex_state = 17}, - [1593] = {.lex_state = 31, .external_lex_state = 17}, + [1585] = {.lex_state = 38, .external_lex_state = 2}, + [1586] = {.lex_state = 38, .external_lex_state = 18}, + [1587] = {.lex_state = 110, .external_lex_state = 8}, + [1588] = {.lex_state = 32}, + [1589] = {.lex_state = 110, .external_lex_state = 8}, + [1590] = {.lex_state = 6, .external_lex_state = 10}, + [1591] = {.lex_state = 31, .external_lex_state = 17}, + [1592] = {.lex_state = 38, .external_lex_state = 2}, + [1593] = {.lex_state = 38, .external_lex_state = 2}, [1594] = {.lex_state = 31, .external_lex_state = 17}, - [1595] = {.lex_state = 31, .external_lex_state = 17}, - [1596] = {.lex_state = 31, .external_lex_state = 17}, + [1595] = {.lex_state = 38, .external_lex_state = 18}, + [1596] = {.lex_state = 38, .external_lex_state = 2}, [1597] = {.lex_state = 38}, - [1598] = {.lex_state = 38, .external_lex_state = 2}, - [1599] = {.lex_state = 31, .external_lex_state = 17}, - [1600] = {.lex_state = 31, .external_lex_state = 17}, + [1598] = {.lex_state = 110, .external_lex_state = 8}, + [1599] = {.lex_state = 6, .external_lex_state = 10}, + [1600] = {.lex_state = 38, .external_lex_state = 2}, [1601] = {.lex_state = 38, .external_lex_state = 2}, - [1602] = {.lex_state = 6, .external_lex_state = 10}, - [1603] = {.lex_state = 31, .external_lex_state = 17}, - [1604] = {.lex_state = 38, .external_lex_state = 2}, - [1605] = {.lex_state = 38, .external_lex_state = 2}, - [1606] = {.lex_state = 31, .external_lex_state = 17}, - [1607] = {.lex_state = 38}, + [1602] = {.lex_state = 110, .external_lex_state = 8}, + [1603] = {.lex_state = 38, .external_lex_state = 2}, + [1604] = {.lex_state = 110, .external_lex_state = 8}, + [1605] = {.lex_state = 34, .external_lex_state = 19}, + [1606] = {.lex_state = 110, .external_lex_state = 8}, + [1607] = {.lex_state = 38, .external_lex_state = 18}, [1608] = {.lex_state = 31, .external_lex_state = 17}, - [1609] = {.lex_state = 38, .external_lex_state = 2}, - [1610] = {.lex_state = 6, .external_lex_state = 10}, - [1611] = {.lex_state = 31, .external_lex_state = 17}, - [1612] = {.lex_state = 34}, + [1609] = {.lex_state = 110, .external_lex_state = 8}, + [1610] = {.lex_state = 110, .external_lex_state = 8}, + [1611] = {.lex_state = 38, .external_lex_state = 2}, + [1612] = {.lex_state = 31, .external_lex_state = 17}, [1613] = {.lex_state = 31, .external_lex_state = 17}, - [1614] = {.lex_state = 31, .external_lex_state = 17}, - [1615] = {.lex_state = 38, .external_lex_state = 19}, + [1614] = {.lex_state = 38, .external_lex_state = 2}, + [1615] = {.lex_state = 38, .external_lex_state = 2}, [1616] = {.lex_state = 38, .external_lex_state = 2}, - [1617] = {.lex_state = 38, .external_lex_state = 2}, - [1618] = {.lex_state = 31, .external_lex_state = 17}, + [1617] = {.lex_state = 6, .external_lex_state = 10}, + [1618] = {.lex_state = 110, .external_lex_state = 8}, [1619] = {.lex_state = 31, .external_lex_state = 17}, - [1620] = {.lex_state = 6, .external_lex_state = 10}, + [1620] = {.lex_state = 31, .external_lex_state = 17}, [1621] = {.lex_state = 31, .external_lex_state = 17}, - [1622] = {.lex_state = 6, .external_lex_state = 10}, - [1623] = {.lex_state = 6, .external_lex_state = 10}, + [1622] = {.lex_state = 110, .external_lex_state = 8}, + [1623] = {.lex_state = 31, .external_lex_state = 17}, [1624] = {.lex_state = 38, .external_lex_state = 2}, - [1625] = {.lex_state = 38, .external_lex_state = 19}, + [1625] = {.lex_state = 110, .external_lex_state = 8}, [1626] = {.lex_state = 31, .external_lex_state = 17}, - [1627] = {.lex_state = 38, .external_lex_state = 2}, - [1628] = {.lex_state = 38, .external_lex_state = 19}, + [1627] = {.lex_state = 38, .external_lex_state = 18}, + [1628] = {.lex_state = 6, .external_lex_state = 10}, [1629] = {.lex_state = 31, .external_lex_state = 17}, - [1630] = {.lex_state = 111, .external_lex_state = 6}, - [1631] = {.lex_state = 32, .external_lex_state = 11}, - [1632] = {.lex_state = 32, .external_lex_state = 18}, - [1633] = {.lex_state = 36, .external_lex_state = 20}, - [1634] = {.lex_state = 32, .external_lex_state = 11}, - [1635] = {.lex_state = 32, .external_lex_state = 18}, - [1636] = {.lex_state = 111, .external_lex_state = 6}, + [1630] = {.lex_state = 31, .external_lex_state = 17}, + [1631] = {.lex_state = 38, .external_lex_state = 2}, + [1632] = {.lex_state = 33, .external_lex_state = 17}, + [1633] = {.lex_state = 31, .external_lex_state = 17}, + [1634] = {.lex_state = 38, .external_lex_state = 2}, + [1635] = {.lex_state = 38, .external_lex_state = 2}, + [1636] = {.lex_state = 6, .external_lex_state = 10}, [1637] = {.lex_state = 38, .external_lex_state = 2}, - [1638] = {.lex_state = 111, .external_lex_state = 6}, - [1639] = {.lex_state = 38, .external_lex_state = 2}, - [1640] = {.lex_state = 36, .external_lex_state = 20}, - [1641] = {.lex_state = 111, .external_lex_state = 6}, - [1642] = {.lex_state = 111, .external_lex_state = 6}, - [1643] = {.lex_state = 31}, - [1644] = {.lex_state = 33}, - [1645] = {.lex_state = 111, .external_lex_state = 6}, - [1646] = {.lex_state = 35, .external_lex_state = 20}, - [1647] = {.lex_state = 35, .external_lex_state = 20}, - [1648] = {.lex_state = 111, .external_lex_state = 6}, - [1649] = {.lex_state = 111, .external_lex_state = 6}, - [1650] = {.lex_state = 31}, - [1651] = {.lex_state = 36, .external_lex_state = 20}, - [1652] = {.lex_state = 111, .external_lex_state = 6}, + [1638] = {.lex_state = 6, .external_lex_state = 10}, + [1639] = {.lex_state = 38, .external_lex_state = 18}, + [1640] = {.lex_state = 38, .external_lex_state = 2}, + [1641] = {.lex_state = 6, .external_lex_state = 10}, + [1642] = {.lex_state = 110, .external_lex_state = 8}, + [1643] = {.lex_state = 21}, + [1644] = {.lex_state = 110, .external_lex_state = 8}, + [1645] = {.lex_state = 6, .external_lex_state = 10}, + [1646] = {.lex_state = 31, .external_lex_state = 17}, + [1647] = {.lex_state = 31}, + [1648] = {.lex_state = 33, .external_lex_state = 17}, + [1649] = {.lex_state = 33, .external_lex_state = 17}, + [1650] = {.lex_state = 110, .external_lex_state = 6}, + [1651] = {.lex_state = 110, .external_lex_state = 6}, + [1652] = {.lex_state = 33, .external_lex_state = 17}, [1653] = {.lex_state = 38}, - [1654] = {.lex_state = 111, .external_lex_state = 6}, - [1655] = {.lex_state = 111, .external_lex_state = 6}, - [1656] = {.lex_state = 35, .external_lex_state = 20}, - [1657] = {.lex_state = 35, .external_lex_state = 20}, - [1658] = {.lex_state = 38}, - [1659] = {.lex_state = 31}, - [1660] = {.lex_state = 111, .external_lex_state = 6}, + [1654] = {.lex_state = 110, .external_lex_state = 6}, + [1655] = {.lex_state = 38}, + [1656] = {.lex_state = 110, .external_lex_state = 6}, + [1657] = {.lex_state = 36, .external_lex_state = 20}, + [1658] = {.lex_state = 36, .external_lex_state = 20}, + [1659] = {.lex_state = 35, .external_lex_state = 20}, + [1660] = {.lex_state = 110, .external_lex_state = 6}, [1661] = {.lex_state = 38}, - [1662] = {.lex_state = 33}, - [1663] = {.lex_state = 32, .external_lex_state = 17}, - [1664] = {.lex_state = 111, .external_lex_state = 6}, - [1665] = {.lex_state = 32, .external_lex_state = 17}, - [1666] = {.lex_state = 32, .external_lex_state = 17}, - [1667] = {.lex_state = 111, .external_lex_state = 6}, - [1668] = {.lex_state = 32, .external_lex_state = 17}, - [1669] = {.lex_state = 111, .external_lex_state = 6}, - [1670] = {.lex_state = 111, .external_lex_state = 6}, - [1671] = {.lex_state = 32, .external_lex_state = 17}, - [1672] = {.lex_state = 32, .external_lex_state = 17}, - [1673] = {.lex_state = 111, .external_lex_state = 6}, - [1674] = {.lex_state = 111, .external_lex_state = 6}, - [1675] = {.lex_state = 111, .external_lex_state = 6}, - [1676] = {.lex_state = 38}, - [1677] = {.lex_state = 111, .external_lex_state = 6}, - [1678] = {.lex_state = 111, .external_lex_state = 6}, - [1679] = {.lex_state = 32, .external_lex_state = 17}, - [1680] = {.lex_state = 32, .external_lex_state = 17}, - [1681] = {.lex_state = 111, .external_lex_state = 6}, - [1682] = {.lex_state = 38}, - [1683] = {.lex_state = 32, .external_lex_state = 17}, - [1684] = {.lex_state = 111, .external_lex_state = 6}, - [1685] = {.lex_state = 111, .external_lex_state = 6}, - [1686] = {.lex_state = 111, .external_lex_state = 6}, - [1687] = {.lex_state = 32, .external_lex_state = 17}, - [1688] = {.lex_state = 34}, - [1689] = {.lex_state = 32, .external_lex_state = 17}, - [1690] = {.lex_state = 111, .external_lex_state = 6}, - [1691] = {.lex_state = 38}, - [1692] = {.lex_state = 32, .external_lex_state = 17}, - [1693] = {.lex_state = 32, .external_lex_state = 17}, - [1694] = {.lex_state = 32, .external_lex_state = 17}, - [1695] = {.lex_state = 38}, - [1696] = {.lex_state = 32, .external_lex_state = 17}, - [1697] = {.lex_state = 111, .external_lex_state = 6}, - [1698] = {.lex_state = 111, .external_lex_state = 6}, - [1699] = {.lex_state = 32, .external_lex_state = 17}, - [1700] = {.lex_state = 38, .external_lex_state = 2}, - [1701] = {.lex_state = 111, .external_lex_state = 6}, - [1702] = {.lex_state = 31}, - [1703] = {.lex_state = 32, .external_lex_state = 17}, - [1704] = {.lex_state = 32, .external_lex_state = 17}, - [1705] = {.lex_state = 32, .external_lex_state = 17}, - [1706] = {.lex_state = 111, .external_lex_state = 6}, - [1707] = {.lex_state = 38}, - [1708] = {.lex_state = 111, .external_lex_state = 6}, - [1709] = {.lex_state = 32, .external_lex_state = 17}, - [1710] = {.lex_state = 36, .external_lex_state = 20}, - [1711] = {.lex_state = 32, .external_lex_state = 17}, - [1712] = {.lex_state = 32, .external_lex_state = 17}, - [1713] = {.lex_state = 38}, - [1714] = {.lex_state = 111, .external_lex_state = 6}, - [1715] = {.lex_state = 32, .external_lex_state = 17}, - [1716] = {.lex_state = 32, .external_lex_state = 17}, - [1717] = {.lex_state = 32, .external_lex_state = 17}, - [1718] = {.lex_state = 111, .external_lex_state = 6}, - [1719] = {.lex_state = 111, .external_lex_state = 6}, - [1720] = {.lex_state = 32, .external_lex_state = 17}, - [1721] = {.lex_state = 32, .external_lex_state = 17}, - [1722] = {.lex_state = 31}, - [1723] = {.lex_state = 31}, - [1724] = {.lex_state = 31}, + [1662] = {.lex_state = 110, .external_lex_state = 6}, + [1663] = {.lex_state = 33, .external_lex_state = 17}, + [1664] = {.lex_state = 33, .external_lex_state = 17}, + [1665] = {.lex_state = 110, .external_lex_state = 6}, + [1666] = {.lex_state = 33, .external_lex_state = 17}, + [1667] = {.lex_state = 34, .external_lex_state = 19}, + [1668] = {.lex_state = 38}, + [1669] = {.lex_state = 33, .external_lex_state = 17}, + [1670] = {.lex_state = 110, .external_lex_state = 6}, + [1671] = {.lex_state = 33, .external_lex_state = 17}, + [1672] = {.lex_state = 110, .external_lex_state = 6}, + [1673] = {.lex_state = 110, .external_lex_state = 6}, + [1674] = {.lex_state = 33, .external_lex_state = 17}, + [1675] = {.lex_state = 35, .external_lex_state = 20}, + [1676] = {.lex_state = 33}, + [1677] = {.lex_state = 35, .external_lex_state = 20}, + [1678] = {.lex_state = 38}, + [1679] = {.lex_state = 34, .external_lex_state = 19}, + [1680] = {.lex_state = 110, .external_lex_state = 6}, + [1681] = {.lex_state = 33, .external_lex_state = 17}, + [1682] = {.lex_state = 34, .external_lex_state = 11}, + [1683] = {.lex_state = 110, .external_lex_state = 6}, + [1684] = {.lex_state = 110, .external_lex_state = 6}, + [1685] = {.lex_state = 34, .external_lex_state = 11}, + [1686] = {.lex_state = 110, .external_lex_state = 6}, + [1687] = {.lex_state = 34, .external_lex_state = 19}, + [1688] = {.lex_state = 38, .external_lex_state = 2}, + [1689] = {.lex_state = 36, .external_lex_state = 20}, + [1690] = {.lex_state = 110, .external_lex_state = 6}, + [1691] = {.lex_state = 38, .external_lex_state = 2}, + [1692] = {.lex_state = 110, .external_lex_state = 6}, + [1693] = {.lex_state = 38}, + [1694] = {.lex_state = 33, .external_lex_state = 17}, + [1695] = {.lex_state = 33, .external_lex_state = 17}, + [1696] = {.lex_state = 110, .external_lex_state = 6}, + [1697] = {.lex_state = 110, .external_lex_state = 6}, + [1698] = {.lex_state = 33, .external_lex_state = 17}, + [1699] = {.lex_state = 33, .external_lex_state = 17}, + [1700] = {.lex_state = 110, .external_lex_state = 6}, + [1701] = {.lex_state = 110, .external_lex_state = 6}, + [1702] = {.lex_state = 110, .external_lex_state = 6}, + [1703] = {.lex_state = 33, .external_lex_state = 17}, + [1704] = {.lex_state = 110, .external_lex_state = 6}, + [1705] = {.lex_state = 33, .external_lex_state = 17}, + [1706] = {.lex_state = 110, .external_lex_state = 6}, + [1707] = {.lex_state = 33, .external_lex_state = 17}, + [1708] = {.lex_state = 33, .external_lex_state = 17}, + [1709] = {.lex_state = 110, .external_lex_state = 6}, + [1710] = {.lex_state = 33, .external_lex_state = 17}, + [1711] = {.lex_state = 110, .external_lex_state = 6}, + [1712] = {.lex_state = 33, .external_lex_state = 17}, + [1713] = {.lex_state = 110, .external_lex_state = 6}, + [1714] = {.lex_state = 38}, + [1715] = {.lex_state = 38}, + [1716] = {.lex_state = 38}, + [1717] = {.lex_state = 110, .external_lex_state = 6}, + [1718] = {.lex_state = 36, .external_lex_state = 20}, + [1719] = {.lex_state = 110, .external_lex_state = 6}, + [1720] = {.lex_state = 110, .external_lex_state = 6}, + [1721] = {.lex_state = 110, .external_lex_state = 6}, + [1722] = {.lex_state = 33, .external_lex_state = 17}, + [1723] = {.lex_state = 110, .external_lex_state = 6}, + [1724] = {.lex_state = 110, .external_lex_state = 6}, [1725] = {.lex_state = 38}, - [1726] = {.lex_state = 38}, - [1727] = {.lex_state = 111, .external_lex_state = 6}, - [1728] = {.lex_state = 111, .external_lex_state = 6}, - [1729] = {.lex_state = 111, .external_lex_state = 6}, - [1730] = {.lex_state = 111, .external_lex_state = 6}, - [1731] = {.lex_state = 38}, - [1732] = {.lex_state = 38}, - [1733] = {.lex_state = 38}, - [1734] = {.lex_state = 38}, - [1735] = {.lex_state = 111, .external_lex_state = 6}, + [1726] = {.lex_state = 110, .external_lex_state = 6}, + [1727] = {.lex_state = 110, .external_lex_state = 6}, + [1728] = {.lex_state = 33, .external_lex_state = 17}, + [1729] = {.lex_state = 38, .external_lex_state = 2}, + [1730] = {.lex_state = 33, .external_lex_state = 17}, + [1731] = {.lex_state = 33, .external_lex_state = 17}, + [1732] = {.lex_state = 33, .external_lex_state = 17}, + [1733] = {.lex_state = 33, .external_lex_state = 17}, + [1734] = {.lex_state = 33, .external_lex_state = 17}, + [1735] = {.lex_state = 33, .external_lex_state = 17}, [1736] = {.lex_state = 38}, - [1737] = {.lex_state = 111, .external_lex_state = 6}, - [1738] = {.lex_state = 111, .external_lex_state = 6}, - [1739] = {.lex_state = 111, .external_lex_state = 6}, - [1740] = {.lex_state = 111, .external_lex_state = 6}, - [1741] = {.lex_state = 111, .external_lex_state = 6}, - [1742] = {.lex_state = 32, .external_lex_state = 18}, - [1743] = {.lex_state = 111, .external_lex_state = 6}, - [1744] = {.lex_state = 39, .external_lex_state = 12}, - [1745] = {.lex_state = 36, .external_lex_state = 20}, - [1746] = {.lex_state = 39, .external_lex_state = 12}, - [1747] = {.lex_state = 36, .external_lex_state = 20}, - [1748] = {.lex_state = 36, .external_lex_state = 20}, - [1749] = {.lex_state = 39, .external_lex_state = 12}, - [1750] = {.lex_state = 32, .external_lex_state = 18}, - [1751] = {.lex_state = 32, .external_lex_state = 18}, - [1752] = {.lex_state = 32, .external_lex_state = 18}, - [1753] = {.lex_state = 38, .external_lex_state = 14}, - [1754] = {.lex_state = 32, .external_lex_state = 18}, - [1755] = {.lex_state = 36, .external_lex_state = 20}, - [1756] = {.lex_state = 32, .external_lex_state = 11}, - [1757] = {.lex_state = 32, .external_lex_state = 18}, - [1758] = {.lex_state = 39, .external_lex_state = 12}, - [1759] = {.lex_state = 39, .external_lex_state = 12}, - [1760] = {.lex_state = 39, .external_lex_state = 12}, - [1761] = {.lex_state = 32, .external_lex_state = 18}, - [1762] = {.lex_state = 32, .external_lex_state = 18}, - [1763] = {.lex_state = 39, .external_lex_state = 12}, - [1764] = {.lex_state = 39, .external_lex_state = 12}, - [1765] = {.lex_state = 39, .external_lex_state = 12}, - [1766] = {.lex_state = 32, .external_lex_state = 18}, - [1767] = {.lex_state = 36, .external_lex_state = 20}, - [1768] = {.lex_state = 39, .external_lex_state = 12}, - [1769] = {.lex_state = 32, .external_lex_state = 18}, - [1770] = {.lex_state = 39, .external_lex_state = 12}, - [1771] = {.lex_state = 39, .external_lex_state = 12}, - [1772] = {.lex_state = 32, .external_lex_state = 18}, - [1773] = {.lex_state = 36, .external_lex_state = 20}, - [1774] = {.lex_state = 32, .external_lex_state = 18}, - [1775] = {.lex_state = 39, .external_lex_state = 12}, - [1776] = {.lex_state = 39, .external_lex_state = 12}, - [1777] = {.lex_state = 36, .external_lex_state = 20}, - [1778] = {.lex_state = 39, .external_lex_state = 12}, - [1779] = {.lex_state = 32, .external_lex_state = 18}, - [1780] = {.lex_state = 32, .external_lex_state = 18}, - [1781] = {.lex_state = 39, .external_lex_state = 12}, - [1782] = {.lex_state = 32, .external_lex_state = 18}, - [1783] = {.lex_state = 39, .external_lex_state = 12}, - [1784] = {.lex_state = 39, .external_lex_state = 12}, - [1785] = {.lex_state = 39, .external_lex_state = 12}, - [1786] = {.lex_state = 35, .external_lex_state = 12}, - [1787] = {.lex_state = 35, .external_lex_state = 12}, - [1788] = {.lex_state = 36, .external_lex_state = 20}, - [1789] = {.lex_state = 35, .external_lex_state = 12}, - [1790] = {.lex_state = 35, .external_lex_state = 12}, - [1791] = {.lex_state = 32, .external_lex_state = 18}, - [1792] = {.lex_state = 32, .external_lex_state = 18}, - [1793] = {.lex_state = 32, .external_lex_state = 18}, - [1794] = {.lex_state = 32, .external_lex_state = 18}, - [1795] = {.lex_state = 36, .external_lex_state = 20}, - [1796] = {.lex_state = 39, .external_lex_state = 12}, - [1797] = {.lex_state = 39, .external_lex_state = 12}, - [1798] = {.lex_state = 39, .external_lex_state = 12}, - [1799] = {.lex_state = 36, .external_lex_state = 12}, - [1800] = {.lex_state = 38}, - [1801] = {.lex_state = 32, .external_lex_state = 18}, - [1802] = {.lex_state = 39, .external_lex_state = 12}, - [1803] = {.lex_state = 39, .external_lex_state = 12}, - [1804] = {.lex_state = 39, .external_lex_state = 12}, - [1805] = {.lex_state = 39, .external_lex_state = 12}, - [1806] = {.lex_state = 38, .external_lex_state = 14}, - [1807] = {.lex_state = 36, .external_lex_state = 20}, - [1808] = {.lex_state = 39, .external_lex_state = 12}, - [1809] = {.lex_state = 36, .external_lex_state = 20}, - [1810] = {.lex_state = 36, .external_lex_state = 20}, - [1811] = {.lex_state = 39, .external_lex_state = 12}, - [1812] = {.lex_state = 39, .external_lex_state = 12}, - [1813] = {.lex_state = 32, .external_lex_state = 18}, - [1814] = {.lex_state = 36, .external_lex_state = 20}, - [1815] = {.lex_state = 36, .external_lex_state = 12}, - [1816] = {.lex_state = 39, .external_lex_state = 12}, - [1817] = {.lex_state = 36, .external_lex_state = 20}, - [1818] = {.lex_state = 32, .external_lex_state = 18}, - [1819] = {.lex_state = 36, .external_lex_state = 20}, - [1820] = {.lex_state = 39, .external_lex_state = 12}, - [1821] = {.lex_state = 39, .external_lex_state = 12}, - [1822] = {.lex_state = 32, .external_lex_state = 18}, - [1823] = {.lex_state = 32, .external_lex_state = 18}, - [1824] = {.lex_state = 31}, - [1825] = {.lex_state = 39, .external_lex_state = 12}, - [1826] = {.lex_state = 38}, - [1827] = {.lex_state = 39, .external_lex_state = 12}, - [1828] = {.lex_state = 36, .external_lex_state = 20}, + [1737] = {.lex_state = 110, .external_lex_state = 6}, + [1738] = {.lex_state = 110, .external_lex_state = 6}, + [1739] = {.lex_state = 32}, + [1740] = {.lex_state = 35, .external_lex_state = 20}, + [1741] = {.lex_state = 38}, + [1742] = {.lex_state = 31}, + [1743] = {.lex_state = 110, .external_lex_state = 6}, + [1744] = {.lex_state = 31}, + [1745] = {.lex_state = 31}, + [1746] = {.lex_state = 33}, + [1747] = {.lex_state = 31}, + [1748] = {.lex_state = 110, .external_lex_state = 6}, + [1749] = {.lex_state = 31}, + [1750] = {.lex_state = 110, .external_lex_state = 6}, + [1751] = {.lex_state = 110, .external_lex_state = 6}, + [1752] = {.lex_state = 38}, + [1753] = {.lex_state = 110, .external_lex_state = 6}, + [1754] = {.lex_state = 110, .external_lex_state = 6}, + [1755] = {.lex_state = 110, .external_lex_state = 6}, + [1756] = {.lex_state = 110, .external_lex_state = 6}, + [1757] = {.lex_state = 38}, + [1758] = {.lex_state = 31}, + [1759] = {.lex_state = 38}, + [1760] = {.lex_state = 110, .external_lex_state = 6}, + [1761] = {.lex_state = 38}, + [1762] = {.lex_state = 35, .external_lex_state = 14}, + [1763] = {.lex_state = 38, .external_lex_state = 13}, + [1764] = {.lex_state = 39, .external_lex_state = 14}, + [1765] = {.lex_state = 38, .external_lex_state = 13}, + [1766] = {.lex_state = 39, .external_lex_state = 14}, + [1767] = {.lex_state = 39, .external_lex_state = 14}, + [1768] = {.lex_state = 39, .external_lex_state = 14}, + [1769] = {.lex_state = 35, .external_lex_state = 14}, + [1770] = {.lex_state = 39, .external_lex_state = 14}, + [1771] = {.lex_state = 38}, + [1772] = {.lex_state = 39, .external_lex_state = 14}, + [1773] = {.lex_state = 31}, + [1774] = {.lex_state = 39, .external_lex_state = 14}, + [1775] = {.lex_state = 39, .external_lex_state = 14}, + [1776] = {.lex_state = 35, .external_lex_state = 14}, + [1777] = {.lex_state = 39, .external_lex_state = 14}, + [1778] = {.lex_state = 39, .external_lex_state = 14}, + [1779] = {.lex_state = 31}, + [1780] = {.lex_state = 39, .external_lex_state = 14}, + [1781] = {.lex_state = 35, .external_lex_state = 14}, + [1782] = {.lex_state = 39, .external_lex_state = 14}, + [1783] = {.lex_state = 38, .external_lex_state = 13}, + [1784] = {.lex_state = 39, .external_lex_state = 14}, + [1785] = {.lex_state = 34, .external_lex_state = 19}, + [1786] = {.lex_state = 34, .external_lex_state = 19}, + [1787] = {.lex_state = 34, .external_lex_state = 19}, + [1788] = {.lex_state = 34, .external_lex_state = 19}, + [1789] = {.lex_state = 34, .external_lex_state = 19}, + [1790] = {.lex_state = 39, .external_lex_state = 14}, + [1791] = {.lex_state = 34, .external_lex_state = 19}, + [1792] = {.lex_state = 34, .external_lex_state = 19}, + [1793] = {.lex_state = 34, .external_lex_state = 19}, + [1794] = {.lex_state = 34, .external_lex_state = 19}, + [1795] = {.lex_state = 34, .external_lex_state = 19}, + [1796] = {.lex_state = 39, .external_lex_state = 14}, + [1797] = {.lex_state = 34, .external_lex_state = 19}, + [1798] = {.lex_state = 36, .external_lex_state = 20}, + [1799] = {.lex_state = 34, .external_lex_state = 19}, + [1800] = {.lex_state = 39, .external_lex_state = 14}, + [1801] = {.lex_state = 39, .external_lex_state = 14}, + [1802] = {.lex_state = 39, .external_lex_state = 14}, + [1803] = {.lex_state = 39, .external_lex_state = 14}, + [1804] = {.lex_state = 36, .external_lex_state = 20}, + [1805] = {.lex_state = 39, .external_lex_state = 14}, + [1806] = {.lex_state = 39, .external_lex_state = 14}, + [1807] = {.lex_state = 34, .external_lex_state = 19}, + [1808] = {.lex_state = 39, .external_lex_state = 14}, + [1809] = {.lex_state = 39, .external_lex_state = 14}, + [1810] = {.lex_state = 39, .external_lex_state = 14}, + [1811] = {.lex_state = 39, .external_lex_state = 14}, + [1812] = {.lex_state = 39, .external_lex_state = 14}, + [1813] = {.lex_state = 39, .external_lex_state = 14}, + [1814] = {.lex_state = 36, .external_lex_state = 14}, + [1815] = {.lex_state = 39, .external_lex_state = 14}, + [1816] = {.lex_state = 34, .external_lex_state = 19}, + [1817] = {.lex_state = 34, .external_lex_state = 19}, + [1818] = {.lex_state = 39, .external_lex_state = 14}, + [1819] = {.lex_state = 39, .external_lex_state = 14}, + [1820] = {.lex_state = 36, .external_lex_state = 20}, + [1821] = {.lex_state = 39, .external_lex_state = 14}, + [1822] = {.lex_state = 39, .external_lex_state = 14}, + [1823] = {.lex_state = 34, .external_lex_state = 19}, + [1824] = {.lex_state = 39, .external_lex_state = 14}, + [1825] = {.lex_state = 36, .external_lex_state = 20}, + [1826] = {.lex_state = 34, .external_lex_state = 19}, + [1827] = {.lex_state = 34, .external_lex_state = 19}, + [1828] = {.lex_state = 34, .external_lex_state = 19}, [1829] = {.lex_state = 36, .external_lex_state = 20}, - [1830] = {.lex_state = 36, .external_lex_state = 20}, - [1831] = {.lex_state = 39, .external_lex_state = 12}, - [1832] = {.lex_state = 32, .external_lex_state = 18}, - [1833] = {.lex_state = 31}, - [1834] = {.lex_state = 36, .external_lex_state = 20}, - [1835] = {.lex_state = 39, .external_lex_state = 12}, - [1836] = {.lex_state = 39, .external_lex_state = 12}, - [1837] = {.lex_state = 39, .external_lex_state = 12}, - [1838] = {.lex_state = 39, .external_lex_state = 12}, - [1839] = {.lex_state = 36, .external_lex_state = 20}, - [1840] = {.lex_state = 39, .external_lex_state = 12}, - [1841] = {.lex_state = 32, .external_lex_state = 18}, + [1830] = {.lex_state = 34, .external_lex_state = 19}, + [1831] = {.lex_state = 36, .external_lex_state = 20}, + [1832] = {.lex_state = 39, .external_lex_state = 14}, + [1833] = {.lex_state = 39, .external_lex_state = 14}, + [1834] = {.lex_state = 39, .external_lex_state = 14}, + [1835] = {.lex_state = 36, .external_lex_state = 20}, + [1836] = {.lex_state = 34, .external_lex_state = 19}, + [1837] = {.lex_state = 39, .external_lex_state = 14}, + [1838] = {.lex_state = 36, .external_lex_state = 20}, + [1839] = {.lex_state = 34, .external_lex_state = 11}, + [1840] = {.lex_state = 36, .external_lex_state = 20}, + [1841] = {.lex_state = 34, .external_lex_state = 19}, [1842] = {.lex_state = 36, .external_lex_state = 20}, [1843] = {.lex_state = 36, .external_lex_state = 20}, - [1844] = {.lex_state = 36, .external_lex_state = 20}, - [1845] = {.lex_state = 36, .external_lex_state = 20}, - [1846] = {.lex_state = 39, .external_lex_state = 12}, - [1847] = {.lex_state = 39, .external_lex_state = 12}, - [1848] = {.lex_state = 39, .external_lex_state = 12}, - [1849] = {.lex_state = 39, .external_lex_state = 12}, - [1850] = {.lex_state = 38, .external_lex_state = 14}, - [1851] = {.lex_state = 39, .external_lex_state = 12}, - [1852] = {.lex_state = 39, .external_lex_state = 12}, - [1853] = {.lex_state = 39, .external_lex_state = 12}, - [1854] = {.lex_state = 39, .external_lex_state = 12}, - [1855] = {.lex_state = 39, .external_lex_state = 12}, + [1844] = {.lex_state = 39, .external_lex_state = 14}, + [1845] = {.lex_state = 39, .external_lex_state = 14}, + [1846] = {.lex_state = 36, .external_lex_state = 20}, + [1847] = {.lex_state = 39, .external_lex_state = 14}, + [1848] = {.lex_state = 34, .external_lex_state = 19}, + [1849] = {.lex_state = 36, .external_lex_state = 20}, + [1850] = {.lex_state = 34, .external_lex_state = 19}, + [1851] = {.lex_state = 39, .external_lex_state = 14}, + [1852] = {.lex_state = 34, .external_lex_state = 19}, + [1853] = {.lex_state = 34, .external_lex_state = 19}, + [1854] = {.lex_state = 36, .external_lex_state = 20}, + [1855] = {.lex_state = 39, .external_lex_state = 14}, [1856] = {.lex_state = 36, .external_lex_state = 20}, - [1857] = {.lex_state = 39, .external_lex_state = 12}, - [1858] = {.lex_state = 39, .external_lex_state = 12}, - [1859] = {.lex_state = 39, .external_lex_state = 12}, - [1860] = {.lex_state = 38}, - [1861] = {.lex_state = 32}, - [1862] = {.lex_state = 38}, - [1863] = {.lex_state = 38}, - [1864] = {.lex_state = 38}, - [1865] = {.lex_state = 38}, - [1866] = {.lex_state = 38}, - [1867] = {.lex_state = 31}, - [1868] = {.lex_state = 38}, - [1869] = {.lex_state = 31}, - [1870] = {.lex_state = 32, .external_lex_state = 11}, - [1871] = {.lex_state = 31}, - [1872] = {.lex_state = 31}, - [1873] = {.lex_state = 32, .external_lex_state = 11}, - [1874] = {.lex_state = 31}, - [1875] = {.lex_state = 31}, - [1876] = {.lex_state = 31}, - [1877] = {.lex_state = 32}, - [1878] = {.lex_state = 38}, - [1879] = {.lex_state = 32}, - [1880] = {.lex_state = 31}, - [1881] = {.lex_state = 32, .external_lex_state = 11}, - [1882] = {.lex_state = 32}, - [1883] = {.lex_state = 32}, - [1884] = {.lex_state = 31}, - [1885] = {.lex_state = 31}, + [1857] = {.lex_state = 39, .external_lex_state = 14}, + [1858] = {.lex_state = 36, .external_lex_state = 20}, + [1859] = {.lex_state = 36, .external_lex_state = 20}, + [1860] = {.lex_state = 36, .external_lex_state = 14}, + [1861] = {.lex_state = 39, .external_lex_state = 14}, + [1862] = {.lex_state = 39, .external_lex_state = 14}, + [1863] = {.lex_state = 39, .external_lex_state = 14}, + [1864] = {.lex_state = 36, .external_lex_state = 20}, + [1865] = {.lex_state = 39, .external_lex_state = 14}, + [1866] = {.lex_state = 39, .external_lex_state = 14}, + [1867] = {.lex_state = 39, .external_lex_state = 14}, + [1868] = {.lex_state = 36, .external_lex_state = 20}, + [1869] = {.lex_state = 36, .external_lex_state = 20}, + [1870] = {.lex_state = 39, .external_lex_state = 14}, + [1871] = {.lex_state = 39, .external_lex_state = 14}, + [1872] = {.lex_state = 36, .external_lex_state = 20}, + [1873] = {.lex_state = 36, .external_lex_state = 20}, + [1874] = {.lex_state = 38}, + [1875] = {.lex_state = 39, .external_lex_state = 14}, + [1876] = {.lex_state = 36, .external_lex_state = 20}, + [1877] = {.lex_state = 36, .external_lex_state = 20}, + [1878] = {.lex_state = 36, .external_lex_state = 20}, + [1879] = {.lex_state = 36, .external_lex_state = 20}, + [1880] = {.lex_state = 34, .external_lex_state = 11}, + [1881] = {.lex_state = 38}, + [1882] = {.lex_state = 34, .external_lex_state = 11}, + [1883] = {.lex_state = 38}, + [1884] = {.lex_state = 33}, + [1885] = {.lex_state = 34, .external_lex_state = 11}, [1886] = {.lex_state = 31}, - [1887] = {.lex_state = 38}, - [1888] = {.lex_state = 31}, - [1889] = {.lex_state = 31}, - [1890] = {.lex_state = 38}, - [1891] = {.lex_state = 32, .external_lex_state = 11}, + [1887] = {.lex_state = 31}, + [1888] = {.lex_state = 38}, + [1889] = {.lex_state = 38}, + [1890] = {.lex_state = 34, .external_lex_state = 11}, + [1891] = {.lex_state = 31}, [1892] = {.lex_state = 31}, - [1893] = {.lex_state = 38}, - [1894] = {.lex_state = 32, .external_lex_state = 11}, - [1895] = {.lex_state = 32}, - [1896] = {.lex_state = 32}, - [1897] = {.lex_state = 32, .external_lex_state = 11}, + [1893] = {.lex_state = 31}, + [1894] = {.lex_state = 33}, + [1895] = {.lex_state = 31}, + [1896] = {.lex_state = 33}, + [1897] = {.lex_state = 33}, [1898] = {.lex_state = 31}, - [1899] = {.lex_state = 32}, - [1900] = {.lex_state = 32}, - [1901] = {.lex_state = 38}, + [1899] = {.lex_state = 33}, + [1900] = {.lex_state = 34, .external_lex_state = 11}, + [1901] = {.lex_state = 31}, [1902] = {.lex_state = 38}, - [1903] = {.lex_state = 31}, - [1904] = {.lex_state = 32, .external_lex_state = 11}, - [1905] = {.lex_state = 32}, - [1906] = {.lex_state = 32, .external_lex_state = 11}, - [1907] = {.lex_state = 31}, + [1903] = {.lex_state = 33}, + [1904] = {.lex_state = 31}, + [1905] = {.lex_state = 36, .external_lex_state = 14}, + [1906] = {.lex_state = 31}, + [1907] = {.lex_state = 38}, [1908] = {.lex_state = 38}, - [1909] = {.lex_state = 31}, - [1910] = {.lex_state = 38}, + [1909] = {.lex_state = 38}, + [1910] = {.lex_state = 34, .external_lex_state = 11}, [1911] = {.lex_state = 38}, - [1912] = {.lex_state = 36, .external_lex_state = 12}, - [1913] = {.lex_state = 40, .external_lex_state = 11}, - [1914] = {.lex_state = 3, .external_lex_state = 10}, - [1915] = {.lex_state = 40, .external_lex_state = 11}, - [1916] = {.lex_state = 38}, - [1917] = {.lex_state = 38}, - [1918] = {.lex_state = 38}, - [1919] = {.lex_state = 38}, - [1920] = {.lex_state = 38}, - [1921] = {.lex_state = 38}, + [1912] = {.lex_state = 33}, + [1913] = {.lex_state = 38}, + [1914] = {.lex_state = 38}, + [1915] = {.lex_state = 31}, + [1916] = {.lex_state = 33}, + [1917] = {.lex_state = 31}, + [1918] = {.lex_state = 31}, + [1919] = {.lex_state = 31}, + [1920] = {.lex_state = 31}, + [1921] = {.lex_state = 31}, [1922] = {.lex_state = 38}, - [1923] = {.lex_state = 116, .external_lex_state = 15}, + [1923] = {.lex_state = 33}, [1924] = {.lex_state = 38}, [1925] = {.lex_state = 38}, - [1926] = {.lex_state = 38}, - [1927] = {.lex_state = 38}, - [1928] = {.lex_state = 38}, - [1929] = {.lex_state = 38}, + [1926] = {.lex_state = 34, .external_lex_state = 11}, + [1927] = {.lex_state = 31}, + [1928] = {.lex_state = 31}, + [1929] = {.lex_state = 34, .external_lex_state = 11}, [1930] = {.lex_state = 38}, - [1931] = {.lex_state = 38}, + [1931] = {.lex_state = 33}, [1932] = {.lex_state = 38}, - [1933] = {.lex_state = 38}, - [1934] = {.lex_state = 38}, - [1935] = {.lex_state = 38}, - [1936] = {.lex_state = 38}, + [1933] = {.lex_state = 40, .external_lex_state = 11}, + [1934] = {.lex_state = 3, .external_lex_state = 10}, + [1935] = {.lex_state = 40, .external_lex_state = 11}, + [1936] = {.lex_state = 116, .external_lex_state = 15}, [1937] = {.lex_state = 38}, [1938] = {.lex_state = 38}, [1939] = {.lex_state = 38}, @@ -6708,848 +6709,874 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1953] = {.lex_state = 38}, [1954] = {.lex_state = 38}, [1955] = {.lex_state = 38}, - [1956] = {.lex_state = 116, .external_lex_state = 15}, + [1956] = {.lex_state = 38}, [1957] = {.lex_state = 38}, [1958] = {.lex_state = 38}, [1959] = {.lex_state = 38}, [1960] = {.lex_state = 38}, [1961] = {.lex_state = 38}, [1962] = {.lex_state = 38}, - [1963] = {.lex_state = 116, .external_lex_state = 15}, + [1963] = {.lex_state = 38}, [1964] = {.lex_state = 38}, - [1965] = {.lex_state = 116, .external_lex_state = 15}, + [1965] = {.lex_state = 38}, [1966] = {.lex_state = 38}, [1967] = {.lex_state = 38}, [1968] = {.lex_state = 38}, [1969] = {.lex_state = 38}, [1970] = {.lex_state = 38}, - [1971] = {.lex_state = 116, .external_lex_state = 15}, - [1972] = {.lex_state = 116, .external_lex_state = 15}, - [1973] = {.lex_state = 116, .external_lex_state = 15}, - [1974] = {.lex_state = 116, .external_lex_state = 15}, + [1971] = {.lex_state = 38}, + [1972] = {.lex_state = 38}, + [1973] = {.lex_state = 38}, + [1974] = {.lex_state = 38}, [1975] = {.lex_state = 116, .external_lex_state = 15}, - [1976] = {.lex_state = 116, .external_lex_state = 10}, - [1977] = {.lex_state = 116, .external_lex_state = 15}, + [1976] = {.lex_state = 38}, + [1977] = {.lex_state = 38}, [1978] = {.lex_state = 116, .external_lex_state = 15}, - [1979] = {.lex_state = 116, .external_lex_state = 15}, + [1979] = {.lex_state = 38}, [1980] = {.lex_state = 116, .external_lex_state = 15}, - [1981] = {.lex_state = 116, .external_lex_state = 15}, - [1982] = {.lex_state = 116, .external_lex_state = 15}, - [1983] = {.lex_state = 116, .external_lex_state = 15}, - [1984] = {.lex_state = 116, .external_lex_state = 15}, - [1985] = {.lex_state = 116, .external_lex_state = 15}, - [1986] = {.lex_state = 116, .external_lex_state = 10}, - [1987] = {.lex_state = 116, .external_lex_state = 15}, - [1988] = {.lex_state = 116, .external_lex_state = 15}, - [1989] = {.lex_state = 116, .external_lex_state = 15}, - [1990] = {.lex_state = 116, .external_lex_state = 15}, + [1981] = {.lex_state = 38}, + [1982] = {.lex_state = 38}, + [1983] = {.lex_state = 38}, + [1984] = {.lex_state = 38}, + [1985] = {.lex_state = 38}, + [1986] = {.lex_state = 38}, + [1987] = {.lex_state = 38}, + [1988] = {.lex_state = 38}, + [1989] = {.lex_state = 38}, + [1990] = {.lex_state = 38}, [1991] = {.lex_state = 116, .external_lex_state = 15}, [1992] = {.lex_state = 116, .external_lex_state = 15}, [1993] = {.lex_state = 116, .external_lex_state = 15}, - [1994] = {.lex_state = 116, .external_lex_state = 15}, + [1994] = {.lex_state = 116, .external_lex_state = 10}, [1995] = {.lex_state = 116, .external_lex_state = 15}, [1996] = {.lex_state = 116, .external_lex_state = 15}, [1997] = {.lex_state = 116, .external_lex_state = 15}, - [1998] = {.lex_state = 26, .external_lex_state = 18}, - [1999] = {.lex_state = 26}, - [2000] = {.lex_state = 116, .external_lex_state = 10}, - [2001] = {.lex_state = 38, .external_lex_state = 17}, - [2002] = {.lex_state = 38, .external_lex_state = 17}, - [2003] = {.lex_state = 38, .external_lex_state = 17}, - [2004] = {.lex_state = 26, .external_lex_state = 12}, - [2005] = {.lex_state = 38, .external_lex_state = 17}, - [2006] = {.lex_state = 38, .external_lex_state = 17}, - [2007] = {.lex_state = 26}, - [2008] = {.lex_state = 38, .external_lex_state = 17}, - [2009] = {.lex_state = 26}, - [2010] = {.lex_state = 38}, - [2011] = {.lex_state = 26}, - [2012] = {.lex_state = 38, .external_lex_state = 17}, - [2013] = {.lex_state = 26}, - [2014] = {.lex_state = 38, .external_lex_state = 17}, - [2015] = {.lex_state = 38, .external_lex_state = 17}, - [2016] = {.lex_state = 26}, - [2017] = {.lex_state = 26}, - [2018] = {.lex_state = 38, .external_lex_state = 17}, - [2019] = {.lex_state = 26}, - [2020] = {.lex_state = 26}, - [2021] = {.lex_state = 38, .external_lex_state = 17}, - [2022] = {.lex_state = 26}, - [2023] = {.lex_state = 26}, + [1998] = {.lex_state = 116, .external_lex_state = 15}, + [1999] = {.lex_state = 116, .external_lex_state = 15}, + [2000] = {.lex_state = 116, .external_lex_state = 15}, + [2001] = {.lex_state = 116, .external_lex_state = 15}, + [2002] = {.lex_state = 116, .external_lex_state = 10}, + [2003] = {.lex_state = 116, .external_lex_state = 15}, + [2004] = {.lex_state = 116, .external_lex_state = 15}, + [2005] = {.lex_state = 116, .external_lex_state = 15}, + [2006] = {.lex_state = 116, .external_lex_state = 15}, + [2007] = {.lex_state = 116, .external_lex_state = 15}, + [2008] = {.lex_state = 116, .external_lex_state = 15}, + [2009] = {.lex_state = 116, .external_lex_state = 15}, + [2010] = {.lex_state = 116, .external_lex_state = 15}, + [2011] = {.lex_state = 116, .external_lex_state = 15}, + [2012] = {.lex_state = 116, .external_lex_state = 15}, + [2013] = {.lex_state = 116, .external_lex_state = 15}, + [2014] = {.lex_state = 116, .external_lex_state = 15}, + [2015] = {.lex_state = 116, .external_lex_state = 15}, + [2016] = {.lex_state = 116, .external_lex_state = 15}, + [2017] = {.lex_state = 116, .external_lex_state = 15}, + [2018] = {.lex_state = 116, .external_lex_state = 15}, + [2019] = {.lex_state = 26, .external_lex_state = 19}, + [2020] = {.lex_state = 116, .external_lex_state = 10}, + [2021] = {.lex_state = 26}, + [2022] = {.lex_state = 38, .external_lex_state = 17}, + [2023] = {.lex_state = 38, .external_lex_state = 17}, [2024] = {.lex_state = 38, .external_lex_state = 17}, - [2025] = {.lex_state = 38, .external_lex_state = 17}, - [2026] = {.lex_state = 26}, - [2027] = {.lex_state = 38, .external_lex_state = 17}, - [2028] = {.lex_state = 38, .external_lex_state = 17}, - [2029] = {.lex_state = 38, .external_lex_state = 17}, + [2025] = {.lex_state = 26, .external_lex_state = 14}, + [2026] = {.lex_state = 38, .external_lex_state = 17}, + [2027] = {.lex_state = 26, .external_lex_state = 21}, + [2028] = {.lex_state = 26, .external_lex_state = 21}, + [2029] = {.lex_state = 26, .external_lex_state = 21}, [2030] = {.lex_state = 26}, [2031] = {.lex_state = 38, .external_lex_state = 17}, [2032] = {.lex_state = 26}, [2033] = {.lex_state = 38, .external_lex_state = 17}, - [2034] = {.lex_state = 38, .external_lex_state = 17}, - [2035] = {.lex_state = 38, .external_lex_state = 17}, - [2036] = {.lex_state = 38, .external_lex_state = 17}, + [2034] = {.lex_state = 26, .external_lex_state = 21}, + [2035] = {.lex_state = 26, .external_lex_state = 21}, + [2036] = {.lex_state = 26}, [2037] = {.lex_state = 38, .external_lex_state = 17}, - [2038] = {.lex_state = 26}, - [2039] = {.lex_state = 26}, + [2038] = {.lex_state = 38, .external_lex_state = 17}, + [2039] = {.lex_state = 38, .external_lex_state = 17}, [2040] = {.lex_state = 38, .external_lex_state = 17}, - [2041] = {.lex_state = 38}, - [2042] = {.lex_state = 38, .external_lex_state = 17}, - [2043] = {.lex_state = 26}, + [2041] = {.lex_state = 38, .external_lex_state = 17}, + [2042] = {.lex_state = 26, .external_lex_state = 21}, + [2043] = {.lex_state = 26, .external_lex_state = 21}, [2044] = {.lex_state = 26}, - [2045] = {.lex_state = 26}, - [2046] = {.lex_state = 26}, - [2047] = {.lex_state = 26}, - [2048] = {.lex_state = 26}, + [2045] = {.lex_state = 38, .external_lex_state = 17}, + [2046] = {.lex_state = 38, .external_lex_state = 17}, + [2047] = {.lex_state = 38, .external_lex_state = 17}, + [2048] = {.lex_state = 38, .external_lex_state = 17}, [2049] = {.lex_state = 38, .external_lex_state = 17}, - [2050] = {.lex_state = 38, .external_lex_state = 17}, - [2051] = {.lex_state = 38, .external_lex_state = 17}, - [2052] = {.lex_state = 38, .external_lex_state = 17}, - [2053] = {.lex_state = 38, .external_lex_state = 17}, + [2050] = {.lex_state = 26}, + [2051] = {.lex_state = 26, .external_lex_state = 21}, + [2052] = {.lex_state = 26, .external_lex_state = 21}, + [2053] = {.lex_state = 26, .external_lex_state = 21}, [2054] = {.lex_state = 26}, - [2055] = {.lex_state = 26}, + [2055] = {.lex_state = 26, .external_lex_state = 21}, [2056] = {.lex_state = 26}, - [2057] = {.lex_state = 41}, - [2058] = {.lex_state = 26, .external_lex_state = 21}, - [2059] = {.lex_state = 27}, - [2060] = {.lex_state = 27}, - [2061] = {.lex_state = 27}, - [2062] = {.lex_state = 41}, - [2063] = {.lex_state = 27}, - [2064] = {.lex_state = 27}, - [2065] = {.lex_state = 41}, - [2066] = {.lex_state = 27}, + [2057] = {.lex_state = 26}, + [2058] = {.lex_state = 26}, + [2059] = {.lex_state = 26, .external_lex_state = 21}, + [2060] = {.lex_state = 26}, + [2061] = {.lex_state = 38, .external_lex_state = 17}, + [2062] = {.lex_state = 26, .external_lex_state = 21}, + [2063] = {.lex_state = 26, .external_lex_state = 21}, + [2064] = {.lex_state = 26}, + [2065] = {.lex_state = 26}, + [2066] = {.lex_state = 26, .external_lex_state = 21}, [2067] = {.lex_state = 26, .external_lex_state = 21}, [2068] = {.lex_state = 26, .external_lex_state = 21}, - [2069] = {.lex_state = 27}, - [2070] = {.lex_state = 27}, + [2069] = {.lex_state = 26}, + [2070] = {.lex_state = 26}, [2071] = {.lex_state = 26, .external_lex_state = 21}, - [2072] = {.lex_state = 27}, - [2073] = {.lex_state = 27}, - [2074] = {.lex_state = 38}, - [2075] = {.lex_state = 26, .external_lex_state = 21}, - [2076] = {.lex_state = 41}, - [2077] = {.lex_state = 26, .external_lex_state = 21}, + [2072] = {.lex_state = 26}, + [2073] = {.lex_state = 38, .external_lex_state = 17}, + [2074] = {.lex_state = 38, .external_lex_state = 17}, + [2075] = {.lex_state = 38, .external_lex_state = 17}, + [2076] = {.lex_state = 38, .external_lex_state = 17}, + [2077] = {.lex_state = 38, .external_lex_state = 17}, [2078] = {.lex_state = 26, .external_lex_state = 21}, - [2079] = {.lex_state = 27}, - [2080] = {.lex_state = 26, .external_lex_state = 21}, - [2081] = {.lex_state = 26, .external_lex_state = 21}, - [2082] = {.lex_state = 27}, - [2083] = {.lex_state = 26, .external_lex_state = 21}, - [2084] = {.lex_state = 41}, + [2079] = {.lex_state = 26, .external_lex_state = 21}, + [2080] = {.lex_state = 38, .external_lex_state = 17}, + [2081] = {.lex_state = 38, .external_lex_state = 17}, + [2082] = {.lex_state = 38, .external_lex_state = 17}, + [2083] = {.lex_state = 26}, + [2084] = {.lex_state = 38}, [2085] = {.lex_state = 26, .external_lex_state = 21}, - [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 27}, - [2088] = {.lex_state = 26, .external_lex_state = 21}, - [2089] = {.lex_state = 26, .external_lex_state = 21}, - [2090] = {.lex_state = 27}, - [2091] = {.lex_state = 27}, - [2092] = {.lex_state = 27}, - [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 27}, - [2095] = {.lex_state = 27}, - [2096] = {.lex_state = 27}, - [2097] = {.lex_state = 41}, - [2098] = {.lex_state = 27}, - [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 27}, - [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 26, .external_lex_state = 21}, - [2105] = {.lex_state = 26, .external_lex_state = 21}, - [2106] = {.lex_state = 26, .external_lex_state = 21}, + [2086] = {.lex_state = 26}, + [2087] = {.lex_state = 38, .external_lex_state = 17}, + [2088] = {.lex_state = 38, .external_lex_state = 17}, + [2089] = {.lex_state = 26}, + [2090] = {.lex_state = 26}, + [2091] = {.lex_state = 26, .external_lex_state = 21}, + [2092] = {.lex_state = 26}, + [2093] = {.lex_state = 26}, + [2094] = {.lex_state = 26}, + [2095] = {.lex_state = 38}, + [2096] = {.lex_state = 38, .external_lex_state = 17}, + [2097] = {.lex_state = 26, .external_lex_state = 21}, + [2098] = {.lex_state = 26, .external_lex_state = 21}, + [2099] = {.lex_state = 26, .external_lex_state = 21}, + [2100] = {.lex_state = 26, .external_lex_state = 21}, + [2101] = {.lex_state = 26}, + [2102] = {.lex_state = 26}, + [2103] = {.lex_state = 38, .external_lex_state = 17}, + [2104] = {.lex_state = 38, .external_lex_state = 17}, + [2105] = {.lex_state = 27}, + [2106] = {.lex_state = 27}, [2107] = {.lex_state = 27}, [2108] = {.lex_state = 27}, [2109] = {.lex_state = 27}, - [2110] = {.lex_state = 26, .external_lex_state = 21}, + [2110] = {.lex_state = 27}, [2111] = {.lex_state = 27}, - [2112] = {.lex_state = 26, .external_lex_state = 21}, + [2112] = {.lex_state = 27}, [2113] = {.lex_state = 27}, - [2114] = {.lex_state = 27}, - [2115] = {.lex_state = 26, .external_lex_state = 21}, - [2116] = {.lex_state = 27}, + [2114] = {.lex_state = 38}, + [2115] = {.lex_state = 27}, + [2116] = {.lex_state = 41}, [2117] = {.lex_state = 27}, [2118] = {.lex_state = 27}, [2119] = {.lex_state = 27}, - [2120] = {.lex_state = 26, .external_lex_state = 21}, + [2120] = {.lex_state = 27}, [2121] = {.lex_state = 27}, [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 26, .external_lex_state = 21}, - [2124] = {.lex_state = 27}, - [2125] = {.lex_state = 26, .external_lex_state = 21}, - [2126] = {.lex_state = 26, .external_lex_state = 21}, + [2123] = {.lex_state = 41}, + [2124] = {.lex_state = 41}, + [2125] = {.lex_state = 27}, + [2126] = {.lex_state = 27}, [2127] = {.lex_state = 27}, - [2128] = {.lex_state = 26, .external_lex_state = 21}, + [2128] = {.lex_state = 27}, [2129] = {.lex_state = 27}, [2130] = {.lex_state = 27}, [2131] = {.lex_state = 27}, [2132] = {.lex_state = 27}, - [2133] = {.lex_state = 26, .external_lex_state = 21}, + [2133] = {.lex_state = 27}, [2134] = {.lex_state = 27}, - [2135] = {.lex_state = 26, .external_lex_state = 21}, + [2135] = {.lex_state = 27}, [2136] = {.lex_state = 27}, [2137] = {.lex_state = 27}, - [2138] = {.lex_state = 38}, - [2139] = {.lex_state = 38}, - [2140] = {.lex_state = 38}, - [2141] = {.lex_state = 28}, - [2142] = {.lex_state = 38}, - [2143] = {.lex_state = 38}, - [2144] = {.lex_state = 38}, - [2145] = {.lex_state = 26}, - [2146] = {.lex_state = 42}, - [2147] = {.lex_state = 42}, - [2148] = {.lex_state = 42}, - [2149] = {.lex_state = 43, .external_lex_state = 21}, - [2150] = {.lex_state = 42}, - [2151] = {.lex_state = 43, .external_lex_state = 21}, - [2152] = {.lex_state = 42}, - [2153] = {.lex_state = 42}, - [2154] = {.lex_state = 42}, - [2155] = {.lex_state = 43, .external_lex_state = 21}, - [2156] = {.lex_state = 31, .external_lex_state = 22}, - [2157] = {.lex_state = 42}, - [2158] = {.lex_state = 42}, - [2159] = {.lex_state = 42}, + [2138] = {.lex_state = 27}, + [2139] = {.lex_state = 27}, + [2140] = {.lex_state = 27}, + [2141] = {.lex_state = 41}, + [2142] = {.lex_state = 27}, + [2143] = {.lex_state = 27}, + [2144] = {.lex_state = 27}, + [2145] = {.lex_state = 27}, + [2146] = {.lex_state = 41}, + [2147] = {.lex_state = 27}, + [2148] = {.lex_state = 27}, + [2149] = {.lex_state = 27}, + [2150] = {.lex_state = 27}, + [2151] = {.lex_state = 27}, + [2152] = {.lex_state = 27}, + [2153] = {.lex_state = 27}, + [2154] = {.lex_state = 27}, + [2155] = {.lex_state = 27}, + [2156] = {.lex_state = 41}, + [2157] = {.lex_state = 27}, + [2158] = {.lex_state = 27}, + [2159] = {.lex_state = 27}, [2160] = {.lex_state = 43, .external_lex_state = 21}, - [2161] = {.lex_state = 42}, - [2162] = {.lex_state = 42}, - [2163] = {.lex_state = 42}, + [2161] = {.lex_state = 43, .external_lex_state = 21}, + [2162] = {.lex_state = 43, .external_lex_state = 21}, + [2163] = {.lex_state = 43, .external_lex_state = 21}, [2164] = {.lex_state = 43, .external_lex_state = 21}, - [2165] = {.lex_state = 42}, - [2166] = {.lex_state = 42}, - [2167] = {.lex_state = 42}, - [2168] = {.lex_state = 42}, - [2169] = {.lex_state = 31, .external_lex_state = 22}, - [2170] = {.lex_state = 43, .external_lex_state = 21}, + [2165] = {.lex_state = 43, .external_lex_state = 21}, + [2166] = {.lex_state = 28}, + [2167] = {.lex_state = 43, .external_lex_state = 21}, + [2168] = {.lex_state = 43, .external_lex_state = 21}, + [2169] = {.lex_state = 43, .external_lex_state = 21}, + [2170] = {.lex_state = 38}, [2171] = {.lex_state = 43, .external_lex_state = 21}, - [2172] = {.lex_state = 42}, - [2173] = {.lex_state = 42}, + [2172] = {.lex_state = 43, .external_lex_state = 21}, + [2173] = {.lex_state = 43, .external_lex_state = 21}, [2174] = {.lex_state = 43, .external_lex_state = 21}, - [2175] = {.lex_state = 42}, - [2176] = {.lex_state = 43, .external_lex_state = 21}, + [2175] = {.lex_state = 38}, + [2176] = {.lex_state = 38}, [2177] = {.lex_state = 43, .external_lex_state = 21}, [2178] = {.lex_state = 43, .external_lex_state = 21}, - [2179] = {.lex_state = 42}, + [2179] = {.lex_state = 43, .external_lex_state = 21}, [2180] = {.lex_state = 43, .external_lex_state = 21}, - [2181] = {.lex_state = 42}, - [2182] = {.lex_state = 42}, + [2181] = {.lex_state = 43, .external_lex_state = 21}, + [2182] = {.lex_state = 43, .external_lex_state = 21}, [2183] = {.lex_state = 43, .external_lex_state = 21}, - [2184] = {.lex_state = 43, .external_lex_state = 21}, + [2184] = {.lex_state = 38}, [2185] = {.lex_state = 43, .external_lex_state = 21}, - [2186] = {.lex_state = 42}, - [2187] = {.lex_state = 42}, - [2188] = {.lex_state = 42}, - [2189] = {.lex_state = 42}, + [2186] = {.lex_state = 43, .external_lex_state = 21}, + [2187] = {.lex_state = 43, .external_lex_state = 21}, + [2188] = {.lex_state = 38}, + [2189] = {.lex_state = 43, .external_lex_state = 21}, [2190] = {.lex_state = 43, .external_lex_state = 21}, - [2191] = {.lex_state = 42}, - [2192] = {.lex_state = 42}, - [2193] = {.lex_state = 31, .external_lex_state = 22}, + [2191] = {.lex_state = 38}, + [2192] = {.lex_state = 43, .external_lex_state = 21}, + [2193] = {.lex_state = 42}, [2194] = {.lex_state = 42}, - [2195] = {.lex_state = 43, .external_lex_state = 21}, - [2196] = {.lex_state = 43, .external_lex_state = 21}, - [2197] = {.lex_state = 43, .external_lex_state = 21}, + [2195] = {.lex_state = 42}, + [2196] = {.lex_state = 42}, + [2197] = {.lex_state = 42}, [2198] = {.lex_state = 42}, [2199] = {.lex_state = 42}, [2200] = {.lex_state = 42}, - [2201] = {.lex_state = 43, .external_lex_state = 21}, + [2201] = {.lex_state = 42}, [2202] = {.lex_state = 42}, [2203] = {.lex_state = 42}, [2204] = {.lex_state = 42}, - [2205] = {.lex_state = 43, .external_lex_state = 21}, + [2205] = {.lex_state = 42}, [2206] = {.lex_state = 42}, - [2207] = {.lex_state = 43, .external_lex_state = 21}, + [2207] = {.lex_state = 42}, [2208] = {.lex_state = 42}, - [2209] = {.lex_state = 43, .external_lex_state = 21}, + [2209] = {.lex_state = 42}, [2210] = {.lex_state = 42}, [2211] = {.lex_state = 42}, - [2212] = {.lex_state = 43, .external_lex_state = 21}, + [2212] = {.lex_state = 42}, [2213] = {.lex_state = 42}, [2214] = {.lex_state = 42}, [2215] = {.lex_state = 42}, - [2216] = {.lex_state = 43, .external_lex_state = 21}, + [2216] = {.lex_state = 42}, [2217] = {.lex_state = 42}, [2218] = {.lex_state = 42}, - [2219] = {.lex_state = 31, .external_lex_state = 22}, - [2220] = {.lex_state = 43, .external_lex_state = 21}, + [2219] = {.lex_state = 42}, + [2220] = {.lex_state = 42}, [2221] = {.lex_state = 42}, [2222] = {.lex_state = 42}, [2223] = {.lex_state = 42}, [2224] = {.lex_state = 42}, - [2225] = {.lex_state = 31, .external_lex_state = 22}, - [2226] = {.lex_state = 4, .external_lex_state = 15}, - [2227] = {.lex_state = 117}, - [2228] = {.lex_state = 117}, - [2229] = {.lex_state = 43}, - [2230] = {.lex_state = 117}, - [2231] = {.lex_state = 43}, - [2232] = {.lex_state = 117}, - [2233] = {.lex_state = 43}, - [2234] = {.lex_state = 117}, - [2235] = {.lex_state = 117}, - [2236] = {.lex_state = 43}, - [2237] = {.lex_state = 4, .external_lex_state = 10}, - [2238] = {.lex_state = 42, .external_lex_state = 17}, - [2239] = {.lex_state = 4, .external_lex_state = 15}, - [2240] = {.lex_state = 42, .external_lex_state = 17}, - [2241] = {.lex_state = 42, .external_lex_state = 17}, - [2242] = {.lex_state = 42, .external_lex_state = 17}, - [2243] = {.lex_state = 4, .external_lex_state = 10}, - [2244] = {.lex_state = 42, .external_lex_state = 17}, - [2245] = {.lex_state = 42, .external_lex_state = 17}, - [2246] = {.lex_state = 42, .external_lex_state = 17}, - [2247] = {.lex_state = 42, .external_lex_state = 17}, - [2248] = {.lex_state = 42, .external_lex_state = 17}, - [2249] = {.lex_state = 42, .external_lex_state = 17}, - [2250] = {.lex_state = 42, .external_lex_state = 17}, - [2251] = {.lex_state = 42, .external_lex_state = 17}, - [2252] = {.lex_state = 42, .external_lex_state = 17}, - [2253] = {.lex_state = 4, .external_lex_state = 10}, - [2254] = {.lex_state = 4, .external_lex_state = 10}, - [2255] = {.lex_state = 42, .external_lex_state = 17}, - [2256] = {.lex_state = 42, .external_lex_state = 17}, - [2257] = {.lex_state = 42, .external_lex_state = 17}, - [2258] = {.lex_state = 42, .external_lex_state = 17}, + [2225] = {.lex_state = 42}, + [2226] = {.lex_state = 42}, + [2227] = {.lex_state = 31, .external_lex_state = 22}, + [2228] = {.lex_state = 42}, + [2229] = {.lex_state = 42}, + [2230] = {.lex_state = 42}, + [2231] = {.lex_state = 42}, + [2232] = {.lex_state = 31, .external_lex_state = 22}, + [2233] = {.lex_state = 26}, + [2234] = {.lex_state = 42}, + [2235] = {.lex_state = 42}, + [2236] = {.lex_state = 42}, + [2237] = {.lex_state = 31, .external_lex_state = 22}, + [2238] = {.lex_state = 31, .external_lex_state = 22}, + [2239] = {.lex_state = 42}, + [2240] = {.lex_state = 42}, + [2241] = {.lex_state = 42}, + [2242] = {.lex_state = 42}, + [2243] = {.lex_state = 42}, + [2244] = {.lex_state = 31, .external_lex_state = 22}, + [2245] = {.lex_state = 42}, + [2246] = {.lex_state = 42}, + [2247] = {.lex_state = 42}, + [2248] = {.lex_state = 43}, + [2249] = {.lex_state = 43}, + [2250] = {.lex_state = 117}, + [2251] = {.lex_state = 117}, + [2252] = {.lex_state = 117}, + [2253] = {.lex_state = 117}, + [2254] = {.lex_state = 43}, + [2255] = {.lex_state = 117}, + [2256] = {.lex_state = 4, .external_lex_state = 15}, + [2257] = {.lex_state = 43}, + [2258] = {.lex_state = 117}, [2259] = {.lex_state = 42, .external_lex_state = 17}, - [2260] = {.lex_state = 42, .external_lex_state = 17}, - [2261] = {.lex_state = 4, .external_lex_state = 10}, - [2262] = {.lex_state = 4, .external_lex_state = 15}, - [2263] = {.lex_state = 4, .external_lex_state = 15}, - [2264] = {.lex_state = 4, .external_lex_state = 10}, - [2265] = {.lex_state = 4, .external_lex_state = 15}, + [2260] = {.lex_state = 4, .external_lex_state = 15}, + [2261] = {.lex_state = 4, .external_lex_state = 15}, + [2262] = {.lex_state = 4, .external_lex_state = 10}, + [2263] = {.lex_state = 42, .external_lex_state = 17}, + [2264] = {.lex_state = 42, .external_lex_state = 17}, + [2265] = {.lex_state = 4, .external_lex_state = 10}, [2266] = {.lex_state = 42, .external_lex_state = 17}, [2267] = {.lex_state = 42, .external_lex_state = 17}, - [2268] = {.lex_state = 4, .external_lex_state = 15}, - [2269] = {.lex_state = 37}, - [2270] = {.lex_state = 31, .external_lex_state = 22}, + [2268] = {.lex_state = 42, .external_lex_state = 17}, + [2269] = {.lex_state = 42, .external_lex_state = 17}, + [2270] = {.lex_state = 4, .external_lex_state = 10}, [2271] = {.lex_state = 4, .external_lex_state = 15}, - [2272] = {.lex_state = 4, .external_lex_state = 15}, + [2272] = {.lex_state = 42, .external_lex_state = 17}, [2273] = {.lex_state = 4, .external_lex_state = 15}, - [2274] = {.lex_state = 4, .external_lex_state = 15}, - [2275] = {.lex_state = 4, .external_lex_state = 15}, - [2276] = {.lex_state = 31, .external_lex_state = 22}, - [2277] = {.lex_state = 31, .external_lex_state = 22}, - [2278] = {.lex_state = 4, .external_lex_state = 15}, - [2279] = {.lex_state = 4, .external_lex_state = 15}, - [2280] = {.lex_state = 4, .external_lex_state = 15}, - [2281] = {.lex_state = 31, .external_lex_state = 22}, - [2282] = {.lex_state = 31, .external_lex_state = 22}, - [2283] = {.lex_state = 4, .external_lex_state = 15}, - [2284] = {.lex_state = 4, .external_lex_state = 15}, - [2285] = {.lex_state = 31, .external_lex_state = 22}, - [2286] = {.lex_state = 4, .external_lex_state = 15}, - [2287] = {.lex_state = 31, .external_lex_state = 22}, - [2288] = {.lex_state = 31, .external_lex_state = 22}, - [2289] = {.lex_state = 31, .external_lex_state = 22}, - [2290] = {.lex_state = 37}, - [2291] = {.lex_state = 31, .external_lex_state = 22}, - [2292] = {.lex_state = 37}, + [2274] = {.lex_state = 42, .external_lex_state = 17}, + [2275] = {.lex_state = 4, .external_lex_state = 10}, + [2276] = {.lex_state = 42, .external_lex_state = 17}, + [2277] = {.lex_state = 42, .external_lex_state = 17}, + [2278] = {.lex_state = 4, .external_lex_state = 10}, + [2279] = {.lex_state = 42, .external_lex_state = 17}, + [2280] = {.lex_state = 42, .external_lex_state = 17}, + [2281] = {.lex_state = 4, .external_lex_state = 10}, + [2282] = {.lex_state = 42, .external_lex_state = 17}, + [2283] = {.lex_state = 42, .external_lex_state = 17}, + [2284] = {.lex_state = 42, .external_lex_state = 17}, + [2285] = {.lex_state = 42, .external_lex_state = 17}, + [2286] = {.lex_state = 42, .external_lex_state = 17}, + [2287] = {.lex_state = 42, .external_lex_state = 17}, + [2288] = {.lex_state = 42, .external_lex_state = 17}, + [2289] = {.lex_state = 42, .external_lex_state = 17}, + [2290] = {.lex_state = 42, .external_lex_state = 17}, + [2291] = {.lex_state = 37}, + [2292] = {.lex_state = 4, .external_lex_state = 15}, [2293] = {.lex_state = 4, .external_lex_state = 15}, [2294] = {.lex_state = 4, .external_lex_state = 15}, - [2295] = {.lex_state = 4, .external_lex_state = 10}, - [2296] = {.lex_state = 31, .external_lex_state = 22}, + [2295] = {.lex_state = 4, .external_lex_state = 15}, + [2296] = {.lex_state = 4, .external_lex_state = 15}, [2297] = {.lex_state = 4, .external_lex_state = 15}, - [2298] = {.lex_state = 31, .external_lex_state = 22}, - [2299] = {.lex_state = 31, .external_lex_state = 22}, + [2298] = {.lex_state = 4, .external_lex_state = 15}, + [2299] = {.lex_state = 42}, [2300] = {.lex_state = 4, .external_lex_state = 15}, [2301] = {.lex_state = 4, .external_lex_state = 15}, - [2302] = {.lex_state = 42}, - [2303] = {.lex_state = 31, .external_lex_state = 22}, - [2304] = {.lex_state = 4, .external_lex_state = 15}, + [2302] = {.lex_state = 4, .external_lex_state = 15}, + [2303] = {.lex_state = 37}, + [2304] = {.lex_state = 42}, [2305] = {.lex_state = 31, .external_lex_state = 22}, - [2306] = {.lex_state = 31, .external_lex_state = 22}, + [2306] = {.lex_state = 4, .external_lex_state = 15}, [2307] = {.lex_state = 4, .external_lex_state = 15}, - [2308] = {.lex_state = 37}, - [2309] = {.lex_state = 4, .external_lex_state = 15}, + [2308] = {.lex_state = 31, .external_lex_state = 22}, + [2309] = {.lex_state = 31, .external_lex_state = 22}, [2310] = {.lex_state = 31, .external_lex_state = 22}, [2311] = {.lex_state = 4, .external_lex_state = 15}, - [2312] = {.lex_state = 42}, + [2312] = {.lex_state = 37}, [2313] = {.lex_state = 4, .external_lex_state = 15}, [2314] = {.lex_state = 31, .external_lex_state = 22}, - [2315] = {.lex_state = 31, .external_lex_state = 22}, - [2316] = {.lex_state = 4, .external_lex_state = 15}, - [2317] = {.lex_state = 4, .external_lex_state = 15}, + [2315] = {.lex_state = 4, .external_lex_state = 10}, + [2316] = {.lex_state = 31, .external_lex_state = 22}, + [2317] = {.lex_state = 31, .external_lex_state = 22}, [2318] = {.lex_state = 4, .external_lex_state = 15}, - [2319] = {.lex_state = 44}, - [2320] = {.lex_state = 117, .external_lex_state = 17}, - [2321] = {.lex_state = 116, .external_lex_state = 10}, - [2322] = {.lex_state = 44}, - [2323] = {.lex_state = 44}, - [2324] = {.lex_state = 44}, - [2325] = {.lex_state = 38}, - [2326] = {.lex_state = 44}, - [2327] = {.lex_state = 44}, - [2328] = {.lex_state = 44}, - [2329] = {.lex_state = 116, .external_lex_state = 10}, - [2330] = {.lex_state = 4, .external_lex_state = 10}, - [2331] = {.lex_state = 116, .external_lex_state = 10}, - [2332] = {.lex_state = 4, .external_lex_state = 10}, - [2333] = {.lex_state = 116, .external_lex_state = 10}, - [2334] = {.lex_state = 44}, - [2335] = {.lex_state = 4, .external_lex_state = 10}, - [2336] = {.lex_state = 116, .external_lex_state = 10}, - [2337] = {.lex_state = 37}, - [2338] = {.lex_state = 116, .external_lex_state = 10}, - [2339] = {.lex_state = 44}, - [2340] = {.lex_state = 44}, - [2341] = {.lex_state = 4, .external_lex_state = 10}, - [2342] = {.lex_state = 44}, - [2343] = {.lex_state = 38}, - [2344] = {.lex_state = 117, .external_lex_state = 17}, - [2345] = {.lex_state = 44}, - [2346] = {.lex_state = 4, .external_lex_state = 10}, - [2347] = {.lex_state = 116, .external_lex_state = 10}, - [2348] = {.lex_state = 44}, - [2349] = {.lex_state = 4, .external_lex_state = 10}, - [2350] = {.lex_state = 44}, - [2351] = {.lex_state = 44}, - [2352] = {.lex_state = 116, .external_lex_state = 10}, - [2353] = {.lex_state = 44}, - [2354] = {.lex_state = 38, .external_lex_state = 17}, - [2355] = {.lex_state = 116, .external_lex_state = 10}, - [2356] = {.lex_state = 117, .external_lex_state = 17}, - [2357] = {.lex_state = 39, .external_lex_state = 20}, - [2358] = {.lex_state = 44}, + [2319] = {.lex_state = 31, .external_lex_state = 22}, + [2320] = {.lex_state = 31, .external_lex_state = 22}, + [2321] = {.lex_state = 31, .external_lex_state = 22}, + [2322] = {.lex_state = 4, .external_lex_state = 15}, + [2323] = {.lex_state = 4, .external_lex_state = 15}, + [2324] = {.lex_state = 31, .external_lex_state = 22}, + [2325] = {.lex_state = 4, .external_lex_state = 15}, + [2326] = {.lex_state = 4, .external_lex_state = 15}, + [2327] = {.lex_state = 4, .external_lex_state = 15}, + [2328] = {.lex_state = 4, .external_lex_state = 15}, + [2329] = {.lex_state = 31, .external_lex_state = 22}, + [2330] = {.lex_state = 4, .external_lex_state = 15}, + [2331] = {.lex_state = 4, .external_lex_state = 15}, + [2332] = {.lex_state = 4, .external_lex_state = 15}, + [2333] = {.lex_state = 31, .external_lex_state = 22}, + [2334] = {.lex_state = 31, .external_lex_state = 22}, + [2335] = {.lex_state = 31, .external_lex_state = 22}, + [2336] = {.lex_state = 31, .external_lex_state = 22}, + [2337] = {.lex_state = 31, .external_lex_state = 22}, + [2338] = {.lex_state = 37}, + [2339] = {.lex_state = 31, .external_lex_state = 22}, + [2340] = {.lex_state = 4, .external_lex_state = 15}, + [2341] = {.lex_state = 31, .external_lex_state = 22}, + [2342] = {.lex_state = 31, .external_lex_state = 22}, + [2343] = {.lex_state = 4, .external_lex_state = 15}, + [2344] = {.lex_state = 116, .external_lex_state = 10}, + [2345] = {.lex_state = 116, .external_lex_state = 10}, + [2346] = {.lex_state = 44}, + [2347] = {.lex_state = 44}, + [2348] = {.lex_state = 116, .external_lex_state = 10}, + [2349] = {.lex_state = 44}, + [2350] = {.lex_state = 4, .external_lex_state = 10}, + [2351] = {.lex_state = 38, .external_lex_state = 17}, + [2352] = {.lex_state = 44}, + [2353] = {.lex_state = 37}, + [2354] = {.lex_state = 44}, + [2355] = {.lex_state = 44}, + [2356] = {.lex_state = 44}, + [2357] = {.lex_state = 4, .external_lex_state = 10}, + [2358] = {.lex_state = 4, .external_lex_state = 10}, [2359] = {.lex_state = 116, .external_lex_state = 10}, - [2360] = {.lex_state = 116, .external_lex_state = 10}, - [2361] = {.lex_state = 117, .external_lex_state = 17}, - [2362] = {.lex_state = 116, .external_lex_state = 10}, - [2363] = {.lex_state = 38}, + [2360] = {.lex_state = 44}, + [2361] = {.lex_state = 38}, + [2362] = {.lex_state = 44}, + [2363] = {.lex_state = 4, .external_lex_state = 10}, [2364] = {.lex_state = 116, .external_lex_state = 10}, - [2365] = {.lex_state = 32, .external_lex_state = 18}, + [2365] = {.lex_state = 44}, [2366] = {.lex_state = 116, .external_lex_state = 10}, [2367] = {.lex_state = 44}, - [2368] = {.lex_state = 44}, - [2369] = {.lex_state = 32, .external_lex_state = 18}, + [2368] = {.lex_state = 116, .external_lex_state = 10}, + [2369] = {.lex_state = 44}, [2370] = {.lex_state = 44}, - [2371] = {.lex_state = 44}, - [2372] = {.lex_state = 116, .external_lex_state = 10}, + [2371] = {.lex_state = 4, .external_lex_state = 10}, + [2372] = {.lex_state = 38}, [2373] = {.lex_state = 116, .external_lex_state = 10}, [2374] = {.lex_state = 116, .external_lex_state = 10}, [2375] = {.lex_state = 44}, - [2376] = {.lex_state = 116, .external_lex_state = 10}, + [2376] = {.lex_state = 117, .external_lex_state = 17}, [2377] = {.lex_state = 44}, - [2378] = {.lex_state = 44}, - [2379] = {.lex_state = 116, .external_lex_state = 10}, - [2380] = {.lex_state = 116, .external_lex_state = 10}, - [2381] = {.lex_state = 32, .external_lex_state = 18}, + [2378] = {.lex_state = 4, .external_lex_state = 10}, + [2379] = {.lex_state = 44}, + [2380] = {.lex_state = 117, .external_lex_state = 17}, + [2381] = {.lex_state = 44}, [2382] = {.lex_state = 116, .external_lex_state = 10}, - [2383] = {.lex_state = 44}, - [2384] = {.lex_state = 44}, - [2385] = {.lex_state = 44}, - [2386] = {.lex_state = 44}, + [2383] = {.lex_state = 116, .external_lex_state = 10}, + [2384] = {.lex_state = 38}, + [2385] = {.lex_state = 116, .external_lex_state = 10}, + [2386] = {.lex_state = 116, .external_lex_state = 10}, [2387] = {.lex_state = 44}, - [2388] = {.lex_state = 32, .external_lex_state = 18}, - [2389] = {.lex_state = 44}, - [2390] = {.lex_state = 44}, - [2391] = {.lex_state = 116, .external_lex_state = 10}, - [2392] = {.lex_state = 44}, - [2393] = {.lex_state = 117}, - [2394] = {.lex_state = 24, .external_lex_state = 20}, - [2395] = {.lex_state = 39, .external_lex_state = 12}, - [2396] = {.lex_state = 39, .external_lex_state = 12}, - [2397] = {.lex_state = 24, .external_lex_state = 20}, - [2398] = {.lex_state = 24, .external_lex_state = 20}, - [2399] = {.lex_state = 39, .external_lex_state = 12}, - [2400] = {.lex_state = 39, .external_lex_state = 12}, - [2401] = {.lex_state = 24, .external_lex_state = 20}, - [2402] = {.lex_state = 24, .external_lex_state = 20}, - [2403] = {.lex_state = 24, .external_lex_state = 20}, - [2404] = {.lex_state = 39, .external_lex_state = 12}, - [2405] = {.lex_state = 24, .external_lex_state = 20}, - [2406] = {.lex_state = 24, .external_lex_state = 20}, - [2407] = {.lex_state = 39, .external_lex_state = 12}, - [2408] = {.lex_state = 39, .external_lex_state = 12}, - [2409] = {.lex_state = 24, .external_lex_state = 20}, - [2410] = {.lex_state = 24, .external_lex_state = 20}, - [2411] = {.lex_state = 39, .external_lex_state = 12}, - [2412] = {.lex_state = 39, .external_lex_state = 12}, - [2413] = {.lex_state = 24, .external_lex_state = 20}, - [2414] = {.lex_state = 117}, - [2415] = {.lex_state = 24, .external_lex_state = 20}, - [2416] = {.lex_state = 43, .external_lex_state = 17}, - [2417] = {.lex_state = 24, .external_lex_state = 20}, - [2418] = {.lex_state = 24, .external_lex_state = 20}, - [2419] = {.lex_state = 39, .external_lex_state = 12}, - [2420] = {.lex_state = 39, .external_lex_state = 12}, - [2421] = {.lex_state = 39, .external_lex_state = 12}, + [2388] = {.lex_state = 117, .external_lex_state = 17}, + [2389] = {.lex_state = 34, .external_lex_state = 19}, + [2390] = {.lex_state = 34, .external_lex_state = 19}, + [2391] = {.lex_state = 44}, + [2392] = {.lex_state = 34, .external_lex_state = 19}, + [2393] = {.lex_state = 44}, + [2394] = {.lex_state = 44}, + [2395] = {.lex_state = 44}, + [2396] = {.lex_state = 116, .external_lex_state = 10}, + [2397] = {.lex_state = 116, .external_lex_state = 10}, + [2398] = {.lex_state = 39, .external_lex_state = 20}, + [2399] = {.lex_state = 34, .external_lex_state = 19}, + [2400] = {.lex_state = 44}, + [2401] = {.lex_state = 117, .external_lex_state = 17}, + [2402] = {.lex_state = 116, .external_lex_state = 10}, + [2403] = {.lex_state = 116, .external_lex_state = 10}, + [2404] = {.lex_state = 44}, + [2405] = {.lex_state = 44}, + [2406] = {.lex_state = 116, .external_lex_state = 10}, + [2407] = {.lex_state = 44}, + [2408] = {.lex_state = 116, .external_lex_state = 10}, + [2409] = {.lex_state = 116, .external_lex_state = 10}, + [2410] = {.lex_state = 44}, + [2411] = {.lex_state = 44}, + [2412] = {.lex_state = 116, .external_lex_state = 10}, + [2413] = {.lex_state = 44}, + [2414] = {.lex_state = 44}, + [2415] = {.lex_state = 44}, + [2416] = {.lex_state = 116, .external_lex_state = 10}, + [2417] = {.lex_state = 44}, + [2418] = {.lex_state = 117}, + [2419] = {.lex_state = 34, .external_lex_state = 19}, + [2420] = {.lex_state = 117}, + [2421] = {.lex_state = 24, .external_lex_state = 20}, [2422] = {.lex_state = 24, .external_lex_state = 20}, - [2423] = {.lex_state = 117}, - [2424] = {.lex_state = 39, .external_lex_state = 12}, - [2425] = {.lex_state = 24, .external_lex_state = 20}, - [2426] = {.lex_state = 32, .external_lex_state = 18}, - [2427] = {.lex_state = 43}, - [2428] = {.lex_state = 39, .external_lex_state = 12}, - [2429] = {.lex_state = 24, .external_lex_state = 20}, - [2430] = {.lex_state = 43, .external_lex_state = 17}, - [2431] = {.lex_state = 39, .external_lex_state = 12}, - [2432] = {.lex_state = 39, .external_lex_state = 12}, - [2433] = {.lex_state = 24, .external_lex_state = 20}, - [2434] = {.lex_state = 24, .external_lex_state = 20}, - [2435] = {.lex_state = 24, .external_lex_state = 20}, - [2436] = {.lex_state = 43}, + [2423] = {.lex_state = 24, .external_lex_state = 20}, + [2424] = {.lex_state = 39, .external_lex_state = 14}, + [2425] = {.lex_state = 39, .external_lex_state = 14}, + [2426] = {.lex_state = 24, .external_lex_state = 20}, + [2427] = {.lex_state = 24, .external_lex_state = 20}, + [2428] = {.lex_state = 24, .external_lex_state = 20}, + [2429] = {.lex_state = 39, .external_lex_state = 14}, + [2430] = {.lex_state = 24, .external_lex_state = 20}, + [2431] = {.lex_state = 39, .external_lex_state = 14}, + [2432] = {.lex_state = 24, .external_lex_state = 20}, + [2433] = {.lex_state = 39, .external_lex_state = 14}, + [2434] = {.lex_state = 39, .external_lex_state = 14}, + [2435] = {.lex_state = 39, .external_lex_state = 14}, + [2436] = {.lex_state = 24, .external_lex_state = 20}, [2437] = {.lex_state = 24, .external_lex_state = 20}, - [2438] = {.lex_state = 43}, + [2438] = {.lex_state = 39, .external_lex_state = 14}, [2439] = {.lex_state = 24, .external_lex_state = 20}, - [2440] = {.lex_state = 39, .external_lex_state = 12}, - [2441] = {.lex_state = 39, .external_lex_state = 12}, - [2442] = {.lex_state = 39, .external_lex_state = 12}, + [2440] = {.lex_state = 117}, + [2441] = {.lex_state = 39, .external_lex_state = 14}, + [2442] = {.lex_state = 24, .external_lex_state = 20}, [2443] = {.lex_state = 24, .external_lex_state = 20}, - [2444] = {.lex_state = 43, .external_lex_state = 17}, - [2445] = {.lex_state = 39, .external_lex_state = 12}, - [2446] = {.lex_state = 39, .external_lex_state = 12}, - [2447] = {.lex_state = 43}, - [2448] = {.lex_state = 24, .external_lex_state = 20}, - [2449] = {.lex_state = 24, .external_lex_state = 20}, - [2450] = {.lex_state = 24, .external_lex_state = 20}, + [2444] = {.lex_state = 43}, + [2445] = {.lex_state = 39, .external_lex_state = 14}, + [2446] = {.lex_state = 24, .external_lex_state = 20}, + [2447] = {.lex_state = 39, .external_lex_state = 14}, + [2448] = {.lex_state = 39, .external_lex_state = 14}, + [2449] = {.lex_state = 39, .external_lex_state = 14}, + [2450] = {.lex_state = 43}, [2451] = {.lex_state = 24, .external_lex_state = 20}, - [2452] = {.lex_state = 43}, - [2453] = {.lex_state = 39, .external_lex_state = 12}, - [2454] = {.lex_state = 43, .external_lex_state = 17}, - [2455] = {.lex_state = 24, .external_lex_state = 20}, + [2452] = {.lex_state = 39, .external_lex_state = 14}, + [2453] = {.lex_state = 43}, + [2454] = {.lex_state = 39, .external_lex_state = 14}, + [2455] = {.lex_state = 39, .external_lex_state = 14}, [2456] = {.lex_state = 24, .external_lex_state = 20}, - [2457] = {.lex_state = 39, .external_lex_state = 12}, + [2457] = {.lex_state = 24, .external_lex_state = 20}, [2458] = {.lex_state = 24, .external_lex_state = 20}, [2459] = {.lex_state = 117}, - [2460] = {.lex_state = 39, .external_lex_state = 12}, - [2461] = {.lex_state = 39, .external_lex_state = 12}, - [2462] = {.lex_state = 32, .external_lex_state = 18}, - [2463] = {.lex_state = 39, .external_lex_state = 12}, - [2464] = {.lex_state = 117}, - [2465] = {.lex_state = 39, .external_lex_state = 12}, - [2466] = {.lex_state = 39, .external_lex_state = 12}, - [2467] = {.lex_state = 24, .external_lex_state = 20}, - [2468] = {.lex_state = 24, .external_lex_state = 20}, - [2469] = {.lex_state = 24, .external_lex_state = 20}, - [2470] = {.lex_state = 39, .external_lex_state = 12}, - [2471] = {.lex_state = 39, .external_lex_state = 12}, - [2472] = {.lex_state = 39, .external_lex_state = 12}, - [2473] = {.lex_state = 39, .external_lex_state = 12}, - [2474] = {.lex_state = 39, .external_lex_state = 12}, - [2475] = {.lex_state = 24, .external_lex_state = 20}, + [2460] = {.lex_state = 39, .external_lex_state = 14}, + [2461] = {.lex_state = 39, .external_lex_state = 14}, + [2462] = {.lex_state = 24, .external_lex_state = 20}, + [2463] = {.lex_state = 39, .external_lex_state = 14}, + [2464] = {.lex_state = 24, .external_lex_state = 20}, + [2465] = {.lex_state = 24, .external_lex_state = 20}, + [2466] = {.lex_state = 39, .external_lex_state = 14}, + [2467] = {.lex_state = 43}, + [2468] = {.lex_state = 39, .external_lex_state = 14}, + [2469] = {.lex_state = 39, .external_lex_state = 14}, + [2470] = {.lex_state = 39, .external_lex_state = 14}, + [2471] = {.lex_state = 24, .external_lex_state = 20}, + [2472] = {.lex_state = 43}, + [2473] = {.lex_state = 24, .external_lex_state = 20}, + [2474] = {.lex_state = 24, .external_lex_state = 20}, + [2475] = {.lex_state = 39, .external_lex_state = 14}, [2476] = {.lex_state = 24, .external_lex_state = 20}, - [2477] = {.lex_state = 24, .external_lex_state = 20}, - [2478] = {.lex_state = 24, .external_lex_state = 20}, - [2479] = {.lex_state = 39, .external_lex_state = 12}, + [2477] = {.lex_state = 39, .external_lex_state = 14}, + [2478] = {.lex_state = 34, .external_lex_state = 19}, + [2479] = {.lex_state = 43}, [2480] = {.lex_state = 24, .external_lex_state = 20}, - [2481] = {.lex_state = 39, .external_lex_state = 12}, - [2482] = {.lex_state = 39, .external_lex_state = 12}, - [2483] = {.lex_state = 24, .external_lex_state = 20}, + [2481] = {.lex_state = 39, .external_lex_state = 14}, + [2482] = {.lex_state = 24, .external_lex_state = 20}, + [2483] = {.lex_state = 39, .external_lex_state = 14}, [2484] = {.lex_state = 24, .external_lex_state = 20}, - [2485] = {.lex_state = 39, .external_lex_state = 12}, - [2486] = {.lex_state = 39, .external_lex_state = 12}, - [2487] = {.lex_state = 24, .external_lex_state = 20}, - [2488] = {.lex_state = 39, .external_lex_state = 12}, - [2489] = {.lex_state = 24, .external_lex_state = 20}, - [2490] = {.lex_state = 24, .external_lex_state = 20}, - [2491] = {.lex_state = 24, .external_lex_state = 20}, - [2492] = {.lex_state = 32, .external_lex_state = 18}, - [2493] = {.lex_state = 39, .external_lex_state = 12}, - [2494] = {.lex_state = 39, .external_lex_state = 12}, - [2495] = {.lex_state = 24, .external_lex_state = 20}, - [2496] = {.lex_state = 39, .external_lex_state = 12}, - [2497] = {.lex_state = 39, .external_lex_state = 12}, + [2485] = {.lex_state = 39, .external_lex_state = 14}, + [2486] = {.lex_state = 43, .external_lex_state = 17}, + [2487] = {.lex_state = 34, .external_lex_state = 19}, + [2488] = {.lex_state = 24, .external_lex_state = 20}, + [2489] = {.lex_state = 39, .external_lex_state = 14}, + [2490] = {.lex_state = 39, .external_lex_state = 14}, + [2491] = {.lex_state = 39, .external_lex_state = 14}, + [2492] = {.lex_state = 39, .external_lex_state = 14}, + [2493] = {.lex_state = 24, .external_lex_state = 20}, + [2494] = {.lex_state = 43}, + [2495] = {.lex_state = 34, .external_lex_state = 19}, + [2496] = {.lex_state = 39, .external_lex_state = 14}, + [2497] = {.lex_state = 24, .external_lex_state = 20}, [2498] = {.lex_state = 24, .external_lex_state = 20}, - [2499] = {.lex_state = 32, .external_lex_state = 18}, - [2500] = {.lex_state = 39, .external_lex_state = 12}, - [2501] = {.lex_state = 39, .external_lex_state = 12}, - [2502] = {.lex_state = 24, .external_lex_state = 20}, + [2499] = {.lex_state = 24, .external_lex_state = 20}, + [2500] = {.lex_state = 24, .external_lex_state = 20}, + [2501] = {.lex_state = 39, .external_lex_state = 14}, + [2502] = {.lex_state = 39, .external_lex_state = 14}, [2503] = {.lex_state = 24, .external_lex_state = 20}, - [2504] = {.lex_state = 39, .external_lex_state = 12}, - [2505] = {.lex_state = 39, .external_lex_state = 12}, - [2506] = {.lex_state = 43}, - [2507] = {.lex_state = 39, .external_lex_state = 12}, - [2508] = {.lex_state = 39, .external_lex_state = 12}, - [2509] = {.lex_state = 39, .external_lex_state = 12}, - [2510] = {.lex_state = 24, .external_lex_state = 20}, + [2504] = {.lex_state = 39, .external_lex_state = 14}, + [2505] = {.lex_state = 39, .external_lex_state = 14}, + [2506] = {.lex_state = 117}, + [2507] = {.lex_state = 24, .external_lex_state = 20}, + [2508] = {.lex_state = 117}, + [2509] = {.lex_state = 39, .external_lex_state = 14}, + [2510] = {.lex_state = 39, .external_lex_state = 14}, [2511] = {.lex_state = 24, .external_lex_state = 20}, - [2512] = {.lex_state = 43}, - [2513] = {.lex_state = 39, .external_lex_state = 12}, + [2512] = {.lex_state = 39, .external_lex_state = 14}, + [2513] = {.lex_state = 24, .external_lex_state = 20}, [2514] = {.lex_state = 24, .external_lex_state = 20}, - [2515] = {.lex_state = 39, .external_lex_state = 12}, - [2516] = {.lex_state = 39, .external_lex_state = 12}, + [2515] = {.lex_state = 24, .external_lex_state = 20}, + [2516] = {.lex_state = 43, .external_lex_state = 17}, [2517] = {.lex_state = 24, .external_lex_state = 20}, - [2518] = {.lex_state = 24, .external_lex_state = 20}, + [2518] = {.lex_state = 39, .external_lex_state = 14}, [2519] = {.lex_state = 24, .external_lex_state = 20}, - [2520] = {.lex_state = 117}, - [2521] = {.lex_state = 117}, - [2522] = {.lex_state = 24, .external_lex_state = 20}, - [2523] = {.lex_state = 24, .external_lex_state = 20}, - [2524] = {.lex_state = 31}, - [2525] = {.lex_state = 24, .external_lex_state = 20}, - [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 43}, - [2528] = {.lex_state = 43}, - [2529] = {.lex_state = 43}, - [2530] = {.lex_state = 43}, - [2531] = {.lex_state = 43}, - [2532] = {.lex_state = 43}, - [2533] = {.lex_state = 43}, - [2534] = {.lex_state = 34}, - [2535] = {.lex_state = 43}, - [2536] = {.lex_state = 37}, - [2537] = {.lex_state = 43}, - [2538] = {.lex_state = 43}, - [2539] = {.lex_state = 43}, - [2540] = {.lex_state = 43}, - [2541] = {.lex_state = 43}, - [2542] = {.lex_state = 43}, - [2543] = {.lex_state = 43}, - [2544] = {.lex_state = 34}, - [2545] = {.lex_state = 43}, + [2520] = {.lex_state = 24, .external_lex_state = 20}, + [2521] = {.lex_state = 39, .external_lex_state = 14}, + [2522] = {.lex_state = 39, .external_lex_state = 14}, + [2523] = {.lex_state = 43, .external_lex_state = 17}, + [2524] = {.lex_state = 24, .external_lex_state = 20}, + [2525] = {.lex_state = 39, .external_lex_state = 14}, + [2526] = {.lex_state = 39, .external_lex_state = 14}, + [2527] = {.lex_state = 24, .external_lex_state = 20}, + [2528] = {.lex_state = 24, .external_lex_state = 20}, + [2529] = {.lex_state = 39, .external_lex_state = 14}, + [2530] = {.lex_state = 24, .external_lex_state = 20}, + [2531] = {.lex_state = 39, .external_lex_state = 14}, + [2532] = {.lex_state = 43, .external_lex_state = 17}, + [2533] = {.lex_state = 117}, + [2534] = {.lex_state = 24, .external_lex_state = 20}, + [2535] = {.lex_state = 39, .external_lex_state = 14}, + [2536] = {.lex_state = 39, .external_lex_state = 14}, + [2537] = {.lex_state = 24, .external_lex_state = 20}, + [2538] = {.lex_state = 39, .external_lex_state = 14}, + [2539] = {.lex_state = 39, .external_lex_state = 14}, + [2540] = {.lex_state = 39, .external_lex_state = 14}, + [2541] = {.lex_state = 24, .external_lex_state = 20}, + [2542] = {.lex_state = 24, .external_lex_state = 20}, + [2543] = {.lex_state = 24, .external_lex_state = 20}, + [2544] = {.lex_state = 39, .external_lex_state = 14}, + [2545] = {.lex_state = 24, .external_lex_state = 20}, [2546] = {.lex_state = 24, .external_lex_state = 20}, - [2547] = {.lex_state = 43}, + [2547] = {.lex_state = 24, .external_lex_state = 20}, [2548] = {.lex_state = 43}, [2549] = {.lex_state = 43}, [2550] = {.lex_state = 43}, - [2551] = {.lex_state = 37}, + [2551] = {.lex_state = 43}, [2552] = {.lex_state = 43}, [2553] = {.lex_state = 43}, - [2554] = {.lex_state = 32, .external_lex_state = 18}, + [2554] = {.lex_state = 43}, [2555] = {.lex_state = 43}, [2556] = {.lex_state = 37}, [2557] = {.lex_state = 43}, - [2558] = {.lex_state = 43}, - [2559] = {.lex_state = 43}, + [2558] = {.lex_state = 24, .external_lex_state = 20}, + [2559] = {.lex_state = 117}, [2560] = {.lex_state = 43}, [2561] = {.lex_state = 43}, [2562] = {.lex_state = 43}, [2563] = {.lex_state = 43}, - [2564] = {.lex_state = 24, .external_lex_state = 20}, + [2564] = {.lex_state = 43}, [2565] = {.lex_state = 43}, - [2566] = {.lex_state = 24, .external_lex_state = 20}, - [2567] = {.lex_state = 43}, + [2566] = {.lex_state = 43}, + [2567] = {.lex_state = 31}, [2568] = {.lex_state = 24, .external_lex_state = 20}, [2569] = {.lex_state = 43}, - [2570] = {.lex_state = 24, .external_lex_state = 20}, - [2571] = {.lex_state = 37}, - [2572] = {.lex_state = 43}, - [2573] = {.lex_state = 43}, - [2574] = {.lex_state = 24, .external_lex_state = 20}, - [2575] = {.lex_state = 34}, + [2570] = {.lex_state = 43}, + [2571] = {.lex_state = 43}, + [2572] = {.lex_state = 24, .external_lex_state = 20}, + [2573] = {.lex_state = 37}, + [2574] = {.lex_state = 43}, + [2575] = {.lex_state = 39, .external_lex_state = 14}, [2576] = {.lex_state = 43}, - [2577] = {.lex_state = 24, .external_lex_state = 20}, + [2577] = {.lex_state = 43}, [2578] = {.lex_state = 43}, - [2579] = {.lex_state = 24, .external_lex_state = 20}, - [2580] = {.lex_state = 24, .external_lex_state = 20}, - [2581] = {.lex_state = 43}, - [2582] = {.lex_state = 37}, + [2579] = {.lex_state = 43}, + [2580] = {.lex_state = 43}, + [2581] = {.lex_state = 34, .external_lex_state = 19}, + [2582] = {.lex_state = 43}, [2583] = {.lex_state = 43}, - [2584] = {.lex_state = 39, .external_lex_state = 12}, + [2584] = {.lex_state = 43}, [2585] = {.lex_state = 43}, - [2586] = {.lex_state = 24, .external_lex_state = 20}, - [2587] = {.lex_state = 24, .external_lex_state = 20}, - [2588] = {.lex_state = 24, .external_lex_state = 20}, + [2586] = {.lex_state = 43}, + [2587] = {.lex_state = 43}, + [2588] = {.lex_state = 37}, [2589] = {.lex_state = 43}, - [2590] = {.lex_state = 43}, - [2591] = {.lex_state = 43}, + [2590] = {.lex_state = 34, .external_lex_state = 19}, + [2591] = {.lex_state = 31}, [2592] = {.lex_state = 43}, - [2593] = {.lex_state = 24, .external_lex_state = 20}, + [2593] = {.lex_state = 43}, [2594] = {.lex_state = 43}, [2595] = {.lex_state = 43}, - [2596] = {.lex_state = 34}, - [2597] = {.lex_state = 24, .external_lex_state = 20}, - [2598] = {.lex_state = 24, .external_lex_state = 20}, - [2599] = {.lex_state = 24, .external_lex_state = 20}, + [2596] = {.lex_state = 31}, + [2597] = {.lex_state = 43}, + [2598] = {.lex_state = 43}, + [2599] = {.lex_state = 37}, [2600] = {.lex_state = 43}, - [2601] = {.lex_state = 43}, - [2602] = {.lex_state = 43}, + [2601] = {.lex_state = 24, .external_lex_state = 20}, + [2602] = {.lex_state = 24, .external_lex_state = 20}, [2603] = {.lex_state = 43}, [2604] = {.lex_state = 43}, - [2605] = {.lex_state = 43}, - [2606] = {.lex_state = 43}, - [2607] = {.lex_state = 24, .external_lex_state = 20}, + [2605] = {.lex_state = 24, .external_lex_state = 20}, + [2606] = {.lex_state = 24, .external_lex_state = 20}, + [2607] = {.lex_state = 43}, [2608] = {.lex_state = 24, .external_lex_state = 20}, - [2609] = {.lex_state = 117}, + [2609] = {.lex_state = 24, .external_lex_state = 20}, [2610] = {.lex_state = 24, .external_lex_state = 20}, - [2611] = {.lex_state = 32, .external_lex_state = 18}, + [2611] = {.lex_state = 43}, [2612] = {.lex_state = 43}, - [2613] = {.lex_state = 24, .external_lex_state = 20}, - [2614] = {.lex_state = 43}, - [2615] = {.lex_state = 37}, - [2616] = {.lex_state = 24, .external_lex_state = 20}, + [2613] = {.lex_state = 43}, + [2614] = {.lex_state = 37}, + [2615] = {.lex_state = 24, .external_lex_state = 20}, + [2616] = {.lex_state = 43}, [2617] = {.lex_state = 43}, [2618] = {.lex_state = 24, .external_lex_state = 20}, [2619] = {.lex_state = 43}, - [2620] = {.lex_state = 43}, - [2621] = {.lex_state = 43}, - [2622] = {.lex_state = 37}, - [2623] = {.lex_state = 43}, - [2624] = {.lex_state = 43}, + [2620] = {.lex_state = 24, .external_lex_state = 20}, + [2621] = {.lex_state = 24, .external_lex_state = 20}, + [2622] = {.lex_state = 43}, + [2623] = {.lex_state = 24, .external_lex_state = 20}, + [2624] = {.lex_state = 24, .external_lex_state = 20}, [2625] = {.lex_state = 43}, [2626] = {.lex_state = 43}, - [2627] = {.lex_state = 37}, - [2628] = {.lex_state = 37}, - [2629] = {.lex_state = 24, .external_lex_state = 12}, - [2630] = {.lex_state = 117}, - [2631] = {.lex_state = 34}, - [2632] = {.lex_state = 117}, - [2633] = {.lex_state = 117}, - [2634] = {.lex_state = 117}, - [2635] = {.lex_state = 117}, - [2636] = {.lex_state = 117}, - [2637] = {.lex_state = 24, .external_lex_state = 12}, - [2638] = {.lex_state = 117}, - [2639] = {.lex_state = 24, .external_lex_state = 12}, - [2640] = {.lex_state = 34}, - [2641] = {.lex_state = 24, .external_lex_state = 12}, - [2642] = {.lex_state = 24, .external_lex_state = 12}, - [2643] = {.lex_state = 37}, - [2644] = {.lex_state = 34}, - [2645] = {.lex_state = 34}, - [2646] = {.lex_state = 24, .external_lex_state = 12}, - [2647] = {.lex_state = 24, .external_lex_state = 12}, - [2648] = {.lex_state = 24, .external_lex_state = 12}, - [2649] = {.lex_state = 24, .external_lex_state = 12}, - [2650] = {.lex_state = 32, .external_lex_state = 11}, - [2651] = {.lex_state = 32, .external_lex_state = 11}, - [2652] = {.lex_state = 117}, - [2653] = {.lex_state = 117}, - [2654] = {.lex_state = 24, .external_lex_state = 12}, - [2655] = {.lex_state = 117}, - [2656] = {.lex_state = 117}, - [2657] = {.lex_state = 117}, - [2658] = {.lex_state = 117}, - [2659] = {.lex_state = 117}, - [2660] = {.lex_state = 34}, - [2661] = {.lex_state = 117, .external_lex_state = 23}, - [2662] = {.lex_state = 117}, - [2663] = {.lex_state = 24, .external_lex_state = 12}, + [2627] = {.lex_state = 24, .external_lex_state = 20}, + [2628] = {.lex_state = 24, .external_lex_state = 20}, + [2629] = {.lex_state = 43}, + [2630] = {.lex_state = 24, .external_lex_state = 20}, + [2631] = {.lex_state = 43}, + [2632] = {.lex_state = 43}, + [2633] = {.lex_state = 43}, + [2634] = {.lex_state = 31}, + [2635] = {.lex_state = 43}, + [2636] = {.lex_state = 43}, + [2637] = {.lex_state = 43}, + [2638] = {.lex_state = 43}, + [2639] = {.lex_state = 43}, + [2640] = {.lex_state = 43}, + [2641] = {.lex_state = 24, .external_lex_state = 20}, + [2642] = {.lex_state = 43}, + [2643] = {.lex_state = 43}, + [2644] = {.lex_state = 24, .external_lex_state = 20}, + [2645] = {.lex_state = 32}, + [2646] = {.lex_state = 24, .external_lex_state = 20}, + [2647] = {.lex_state = 37}, + [2648] = {.lex_state = 24, .external_lex_state = 20}, + [2649] = {.lex_state = 32}, + [2650] = {.lex_state = 24, .external_lex_state = 20}, + [2651] = {.lex_state = 37}, + [2652] = {.lex_state = 24, .external_lex_state = 20}, + [2653] = {.lex_state = 34, .external_lex_state = 11}, + [2654] = {.lex_state = 24, .external_lex_state = 14}, + [2655] = {.lex_state = 31}, + [2656] = {.lex_state = 31}, + [2657] = {.lex_state = 31}, + [2658] = {.lex_state = 31}, + [2659] = {.lex_state = 37}, + [2660] = {.lex_state = 31}, + [2661] = {.lex_state = 31}, + [2662] = {.lex_state = 24, .external_lex_state = 14}, + [2663] = {.lex_state = 24, .external_lex_state = 14}, [2664] = {.lex_state = 117}, - [2665] = {.lex_state = 117}, - [2666] = {.lex_state = 37}, - [2667] = {.lex_state = 117}, + [2665] = {.lex_state = 37}, + [2666] = {.lex_state = 24, .external_lex_state = 14}, + [2667] = {.lex_state = 24, .external_lex_state = 14}, [2668] = {.lex_state = 117}, - [2669] = {.lex_state = 34}, + [2669] = {.lex_state = 31}, [2670] = {.lex_state = 117}, - [2671] = {.lex_state = 117}, - [2672] = {.lex_state = 32, .external_lex_state = 11}, - [2673] = {.lex_state = 24, .external_lex_state = 12}, - [2674] = {.lex_state = 117}, - [2675] = {.lex_state = 24, .external_lex_state = 12}, - [2676] = {.lex_state = 24, .external_lex_state = 12}, - [2677] = {.lex_state = 24, .external_lex_state = 12}, - [2678] = {.lex_state = 24, .external_lex_state = 12}, - [2679] = {.lex_state = 32, .external_lex_state = 11}, + [2671] = {.lex_state = 24, .external_lex_state = 14}, + [2672] = {.lex_state = 37}, + [2673] = {.lex_state = 24, .external_lex_state = 14}, + [2674] = {.lex_state = 31}, + [2675] = {.lex_state = 117}, + [2676] = {.lex_state = 31}, + [2677] = {.lex_state = 117}, + [2678] = {.lex_state = 117}, + [2679] = {.lex_state = 117}, [2680] = {.lex_state = 117}, - [2681] = {.lex_state = 24, .external_lex_state = 12}, + [2681] = {.lex_state = 37}, [2682] = {.lex_state = 117}, [2683] = {.lex_state = 117}, - [2684] = {.lex_state = 117}, - [2685] = {.lex_state = 34}, - [2686] = {.lex_state = 34}, - [2687] = {.lex_state = 24, .external_lex_state = 12}, - [2688] = {.lex_state = 24, .external_lex_state = 12}, - [2689] = {.lex_state = 24, .external_lex_state = 12}, - [2690] = {.lex_state = 24, .external_lex_state = 12}, - [2691] = {.lex_state = 117}, - [2692] = {.lex_state = 34}, - [2693] = {.lex_state = 117}, - [2694] = {.lex_state = 34}, + [2684] = {.lex_state = 24, .external_lex_state = 14}, + [2685] = {.lex_state = 31}, + [2686] = {.lex_state = 117}, + [2687] = {.lex_state = 24, .external_lex_state = 14}, + [2688] = {.lex_state = 117}, + [2689] = {.lex_state = 117}, + [2690] = {.lex_state = 117}, + [2691] = {.lex_state = 24, .external_lex_state = 14}, + [2692] = {.lex_state = 117}, + [2693] = {.lex_state = 24, .external_lex_state = 14}, + [2694] = {.lex_state = 117}, [2695] = {.lex_state = 117}, - [2696] = {.lex_state = 34}, - [2697] = {.lex_state = 117}, + [2696] = {.lex_state = 31}, + [2697] = {.lex_state = 24, .external_lex_state = 14}, [2698] = {.lex_state = 117}, [2699] = {.lex_state = 117}, [2700] = {.lex_state = 117}, - [2701] = {.lex_state = 117}, - [2702] = {.lex_state = 24, .external_lex_state = 12}, - [2703] = {.lex_state = 24, .external_lex_state = 12}, + [2701] = {.lex_state = 24, .external_lex_state = 14}, + [2702] = {.lex_state = 24, .external_lex_state = 14}, + [2703] = {.lex_state = 117}, [2704] = {.lex_state = 117}, [2705] = {.lex_state = 117}, - [2706] = {.lex_state = 117}, - [2707] = {.lex_state = 24, .external_lex_state = 12}, - [2708] = {.lex_state = 37}, - [2709] = {.lex_state = 117}, - [2710] = {.lex_state = 37}, - [2711] = {.lex_state = 24, .external_lex_state = 12}, - [2712] = {.lex_state = 24, .external_lex_state = 12}, - [2713] = {.lex_state = 24, .external_lex_state = 12}, - [2714] = {.lex_state = 24, .external_lex_state = 12}, - [2715] = {.lex_state = 24, .external_lex_state = 12}, - [2716] = {.lex_state = 24, .external_lex_state = 12}, - [2717] = {.lex_state = 24, .external_lex_state = 12}, - [2718] = {.lex_state = 37}, + [2706] = {.lex_state = 31}, + [2707] = {.lex_state = 117}, + [2708] = {.lex_state = 24, .external_lex_state = 14}, + [2709] = {.lex_state = 24, .external_lex_state = 14}, + [2710] = {.lex_state = 117}, + [2711] = {.lex_state = 31}, + [2712] = {.lex_state = 37}, + [2713] = {.lex_state = 37}, + [2714] = {.lex_state = 24, .external_lex_state = 14}, + [2715] = {.lex_state = 24, .external_lex_state = 14}, + [2716] = {.lex_state = 117}, + [2717] = {.lex_state = 117}, + [2718] = {.lex_state = 24, .external_lex_state = 14}, [2719] = {.lex_state = 117}, - [2720] = {.lex_state = 117}, - [2721] = {.lex_state = 24, .external_lex_state = 12}, + [2720] = {.lex_state = 117, .external_lex_state = 23}, + [2721] = {.lex_state = 117}, [2722] = {.lex_state = 117}, - [2723] = {.lex_state = 117}, + [2723] = {.lex_state = 24, .external_lex_state = 14}, [2724] = {.lex_state = 117}, - [2725] = {.lex_state = 24, .external_lex_state = 12}, - [2726] = {.lex_state = 24, .external_lex_state = 12}, - [2727] = {.lex_state = 117}, - [2728] = {.lex_state = 37}, + [2725] = {.lex_state = 117}, + [2726] = {.lex_state = 24, .external_lex_state = 14}, + [2727] = {.lex_state = 24, .external_lex_state = 14}, + [2728] = {.lex_state = 117}, [2729] = {.lex_state = 117}, [2730] = {.lex_state = 117}, [2731] = {.lex_state = 117}, [2732] = {.lex_state = 117}, - [2733] = {.lex_state = 117, .external_lex_state = 23}, + [2733] = {.lex_state = 24, .external_lex_state = 14}, [2734] = {.lex_state = 117}, [2735] = {.lex_state = 117}, - [2736] = {.lex_state = 117}, + [2736] = {.lex_state = 24, .external_lex_state = 14}, [2737] = {.lex_state = 117}, - [2738] = {.lex_state = 117}, - [2739] = {.lex_state = 117}, - [2740] = {.lex_state = 117}, - [2741] = {.lex_state = 117}, - [2742] = {.lex_state = 117}, - [2743] = {.lex_state = 37}, - [2744] = {.lex_state = 24, .external_lex_state = 12}, - [2745] = {.lex_state = 24, .external_lex_state = 12}, + [2738] = {.lex_state = 24, .external_lex_state = 14}, + [2739] = {.lex_state = 37}, + [2740] = {.lex_state = 34, .external_lex_state = 11}, + [2741] = {.lex_state = 34, .external_lex_state = 11}, + [2742] = {.lex_state = 24, .external_lex_state = 14}, + [2743] = {.lex_state = 24, .external_lex_state = 14}, + [2744] = {.lex_state = 117}, + [2745] = {.lex_state = 117}, [2746] = {.lex_state = 117}, [2747] = {.lex_state = 117}, - [2748] = {.lex_state = 34}, - [2749] = {.lex_state = 117}, - [2750] = {.lex_state = 117}, - [2751] = {.lex_state = 24, .external_lex_state = 12}, + [2748] = {.lex_state = 24, .external_lex_state = 14}, + [2749] = {.lex_state = 24, .external_lex_state = 14}, + [2750] = {.lex_state = 24, .external_lex_state = 14}, + [2751] = {.lex_state = 117}, [2752] = {.lex_state = 117}, - [2753] = {.lex_state = 117}, - [2754] = {.lex_state = 24, .external_lex_state = 12}, + [2753] = {.lex_state = 24, .external_lex_state = 14}, + [2754] = {.lex_state = 117}, [2755] = {.lex_state = 117}, - [2756] = {.lex_state = 24, .external_lex_state = 12}, - [2757] = {.lex_state = 24, .external_lex_state = 12}, + [2756] = {.lex_state = 117}, + [2757] = {.lex_state = 117}, [2758] = {.lex_state = 117}, - [2759] = {.lex_state = 34}, - [2760] = {.lex_state = 24, .external_lex_state = 12}, - [2761] = {.lex_state = 24, .external_lex_state = 12}, - [2762] = {.lex_state = 117}, + [2759] = {.lex_state = 117}, + [2760] = {.lex_state = 117}, + [2761] = {.lex_state = 37}, + [2762] = {.lex_state = 34, .external_lex_state = 11}, [2763] = {.lex_state = 117}, - [2764] = {.lex_state = 117}, + [2764] = {.lex_state = 24, .external_lex_state = 14}, [2765] = {.lex_state = 117}, [2766] = {.lex_state = 117}, [2767] = {.lex_state = 117}, - [2768] = {.lex_state = 24, .external_lex_state = 12}, + [2768] = {.lex_state = 24, .external_lex_state = 14}, [2769] = {.lex_state = 117}, - [2770] = {.lex_state = 24, .external_lex_state = 12}, - [2771] = {.lex_state = 24, .external_lex_state = 12}, - [2772] = {.lex_state = 37}, - [2773] = {.lex_state = 34}, - [2774] = {.lex_state = 24, .external_lex_state = 12}, - [2775] = {.lex_state = 37}, + [2770] = {.lex_state = 117, .external_lex_state = 23}, + [2771] = {.lex_state = 117}, + [2772] = {.lex_state = 117}, + [2773] = {.lex_state = 24, .external_lex_state = 14}, + [2774] = {.lex_state = 117}, + [2775] = {.lex_state = 24, .external_lex_state = 14}, [2776] = {.lex_state = 117}, - [2777] = {.lex_state = 24, .external_lex_state = 12}, - [2778] = {.lex_state = 24, .external_lex_state = 12}, - [2779] = {.lex_state = 24, .external_lex_state = 12}, - [2780] = {.lex_state = 117}, - [2781] = {.lex_state = 24, .external_lex_state = 12}, - [2782] = {.lex_state = 117}, - [2783] = {.lex_state = 117}, - [2784] = {.lex_state = 34}, - [2785] = {.lex_state = 34}, + [2777] = {.lex_state = 24, .external_lex_state = 14}, + [2778] = {.lex_state = 24, .external_lex_state = 14}, + [2779] = {.lex_state = 117}, + [2780] = {.lex_state = 24, .external_lex_state = 14}, + [2781] = {.lex_state = 24, .external_lex_state = 14}, + [2782] = {.lex_state = 24, .external_lex_state = 14}, + [2783] = {.lex_state = 24, .external_lex_state = 14}, + [2784] = {.lex_state = 117}, + [2785] = {.lex_state = 117}, [2786] = {.lex_state = 117}, [2787] = {.lex_state = 117}, [2788] = {.lex_state = 117}, - [2789] = {.lex_state = 117}, - [2790] = {.lex_state = 117}, - [2791] = {.lex_state = 117}, - [2792] = {.lex_state = 24, .external_lex_state = 12}, + [2789] = {.lex_state = 24, .external_lex_state = 14}, + [2790] = {.lex_state = 37}, + [2791] = {.lex_state = 31}, + [2792] = {.lex_state = 24, .external_lex_state = 14}, [2793] = {.lex_state = 117}, [2794] = {.lex_state = 117}, [2795] = {.lex_state = 117}, [2796] = {.lex_state = 117}, - [2797] = {.lex_state = 24, .external_lex_state = 12}, + [2797] = {.lex_state = 117}, + [2798] = {.lex_state = 24, .external_lex_state = 14}, + [2799] = {.lex_state = 37}, + [2800] = {.lex_state = 117}, + [2801] = {.lex_state = 117}, + [2802] = {.lex_state = 24, .external_lex_state = 14}, + [2803] = {.lex_state = 24, .external_lex_state = 14}, + [2804] = {.lex_state = 24, .external_lex_state = 14}, + [2805] = {.lex_state = 24, .external_lex_state = 14}, + [2806] = {.lex_state = 117}, + [2807] = {.lex_state = 117}, + [2808] = {.lex_state = 117}, + [2809] = {.lex_state = 117}, + [2810] = {.lex_state = 31}, + [2811] = {.lex_state = 31}, + [2812] = {.lex_state = 117}, + [2813] = {.lex_state = 117}, + [2814] = {.lex_state = 117}, + [2815] = {.lex_state = 117}, + [2816] = {.lex_state = 117}, + [2817] = {.lex_state = 24, .external_lex_state = 14}, + [2818] = {.lex_state = 24, .external_lex_state = 14}, + [2819] = {.lex_state = 117}, + [2820] = {.lex_state = 24, .external_lex_state = 14}, + [2821] = {.lex_state = 24, .external_lex_state = 14}, + [2822] = {.lex_state = 117}, + [2823] = {.lex_state = 37}, }; enum { @@ -7662,14 +7689,14 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [12] = { + [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, [13] = { [ts_external_token_regex] = true, - [ts_external_token_RBRACE] = true, }, [14] = { - [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, }, [15] = { [ts_external_token__concat] = true, @@ -7684,11 +7711,11 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, }, [18] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token__empty_value] = true, }, [19] = { - [ts_external_token__empty_value] = true, + [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, }, [20] = { [ts_external_token__concat] = true, @@ -7696,6 +7723,7 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { }, [21] = { [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = true, }, [22] = { [ts_external_token__heredoc_body_middle] = true, @@ -7804,38 +7832,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2753), - [sym__statements] = STATE(2752), - [sym_redirected_statement] = STATE(1332), - [sym_for_statement] = STATE(1332), - [sym_c_style_for_statement] = STATE(1332), - [sym_while_statement] = STATE(1332), - [sym_if_statement] = STATE(1332), - [sym_case_statement] = STATE(1332), - [sym_function_definition] = STATE(1332), - [sym_compound_statement] = STATE(1332), - [sym_subshell] = STATE(1332), - [sym_pipeline] = STATE(1332), - [sym_list] = STATE(1332), - [sym_negated_command] = STATE(1332), - [sym_test_command] = STATE(1332), - [sym_declaration_command] = STATE(1332), - [sym_unset_command] = STATE(1332), - [sym_command] = STATE(1332), - [sym_command_name] = STATE(151), - [sym_variable_assignment] = STATE(222), - [sym_subscript] = STATE(2541), - [sym_file_redirect] = STATE(592), - [sym_concatenation] = STATE(560), - [sym_string] = STATE(241), - [sym_simple_expansion] = STATE(241), - [sym_string_expansion] = STATE(241), - [sym_expansion] = STATE(241), - [sym_command_substitution] = STATE(241), - [sym_process_substitution] = STATE(241), - [aux_sym__statements_repeat1] = STATE(113), - [aux_sym_command_repeat1] = STATE(592), - [aux_sym__literal_repeat1] = STATE(301), + [sym_program] = STATE(2786), + [sym__statements] = STATE(2785), + [sym_redirected_statement] = STATE(1330), + [sym_for_statement] = STATE(1330), + [sym_c_style_for_statement] = STATE(1330), + [sym_while_statement] = STATE(1330), + [sym_if_statement] = STATE(1330), + [sym_case_statement] = STATE(1330), + [sym_function_definition] = STATE(1330), + [sym_compound_statement] = STATE(1330), + [sym_subshell] = STATE(1330), + [sym_pipeline] = STATE(1330), + [sym_list] = STATE(1330), + [sym_negated_command] = STATE(1330), + [sym_test_command] = STATE(1330), + [sym_declaration_command] = STATE(1330), + [sym_unset_command] = STATE(1330), + [sym_command] = STATE(1330), + [sym_command_name] = STATE(168), + [sym_variable_assignment] = STATE(223), + [sym_subscript] = STATE(2625), + [sym_file_redirect] = STATE(571), + [sym_concatenation] = STATE(564), + [sym_string] = STATE(246), + [sym_simple_expansion] = STATE(246), + [sym_string_expansion] = STATE(246), + [sym_expansion] = STATE(246), + [sym_command_substitution] = STATE(246), + [sym_process_substitution] = STATE(246), + [aux_sym__statements_repeat1] = STATE(112), + [aux_sym_command_repeat1] = STATE(571), + [aux_sym__literal_repeat1] = STATE(473), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -7880,38 +7908,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_elif_clause] = STATE(2292), - [sym_else_clause] = STATE(2643), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_if_statement_repeat1] = STATE(2292), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_elif_clause] = STATE(2312), + [sym_else_clause] = STATE(2712), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_if_statement_repeat1] = STATE(2312), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -7957,39 +7985,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [3] = { - [aux_sym__statements2] = STATE(2), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_elif_clause] = STATE(2308), - [sym_else_clause] = STATE(2627), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_if_statement_repeat1] = STATE(2308), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(6), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_elif_clause] = STATE(2291), + [sym_else_clause] = STATE(2681), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_if_statement_repeat1] = STATE(2291), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8035,39 +8063,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [4] = { - [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_elif_clause] = STATE(2290), - [sym_else_clause] = STATE(2708), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_if_statement_repeat1] = STATE(2290), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(3), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_elif_clause] = STATE(2338), + [sym_else_clause] = STATE(2739), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_if_statement_repeat1] = STATE(2338), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8113,39 +8141,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [5] = { - [aux_sym__statements2] = STATE(4), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_elif_clause] = STATE(2269), - [sym_else_clause] = STATE(2743), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_if_statement_repeat1] = STATE(2269), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(2), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_elif_clause] = STATE(2303), + [sym_else_clause] = STATE(2790), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_if_statement_repeat1] = STATE(2303), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8192,35 +8220,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(119), [anon_sym_for] = ACTIONS(122), [anon_sym_LPAREN_LPAREN] = ACTIONS(125), @@ -8267,119 +8295,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(196), }, [7] = { - [sym__statements] = STATE(2544), - [sym_redirected_statement] = STATE(1314), - [sym_for_statement] = STATE(1314), - [sym_c_style_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_compound_statement] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_negated_command] = STATE(1314), - [sym_test_command] = STATE(1314), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), - [sym_command] = STATE(1314), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(233), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), - [aux_sym__statements_repeat1] = STATE(116), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_esac] = ACTIONS(201), - [anon_sym_SEMI_SEMI] = ACTIONS(203), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), - }, - [8] = { - [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(10), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(229), - [anon_sym_elif] = ACTIONS(229), - [anon_sym_else] = ACTIONS(229), + [anon_sym_fi] = ACTIONS(199), + [anon_sym_elif] = ACTIONS(199), + [anon_sym_else] = ACTIONS(199), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), @@ -8416,39 +8369,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, - [9] = { - [sym__statements] = STATE(2575), - [sym_redirected_statement] = STATE(1314), - [sym_for_statement] = STATE(1314), - [sym_c_style_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_compound_statement] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_negated_command] = STATE(1314), - [sym_test_command] = STATE(1314), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), - [sym_command] = STATE(1314), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(233), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), + [8] = { + [sym__statements] = STATE(2567), + [sym_redirected_statement] = STATE(1334), + [sym_for_statement] = STATE(1334), + [sym_c_style_for_statement] = STATE(1334), + [sym_while_statement] = STATE(1334), + [sym_if_statement] = STATE(1334), + [sym_case_statement] = STATE(1334), + [sym_function_definition] = STATE(1334), + [sym_compound_statement] = STATE(1334), + [sym_subshell] = STATE(1334), + [sym_pipeline] = STATE(1334), + [sym_list] = STATE(1334), + [sym_negated_command] = STATE(1334), + [sym_test_command] = STATE(1334), + [sym_declaration_command] = STATE(1334), + [sym_unset_command] = STATE(1334), + [sym_command] = STATE(1334), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(225), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), [aux_sym__statements_repeat1] = STATE(116), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_esac] = ACTIONS(203), + [anon_sym_SEMI_SEMI] = ACTIONS(205), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(229), + }, + [9] = { + [sym__statements] = STATE(2591), + [sym_redirected_statement] = STATE(1334), + [sym_for_statement] = STATE(1334), + [sym_c_style_for_statement] = STATE(1334), + [sym_while_statement] = STATE(1334), + [sym_if_statement] = STATE(1334), + [sym_case_statement] = STATE(1334), + [sym_function_definition] = STATE(1334), + [sym_compound_statement] = STATE(1334), + [sym_subshell] = STATE(1334), + [sym_pipeline] = STATE(1334), + [sym_list] = STATE(1334), + [sym_negated_command] = STATE(1334), + [sym_test_command] = STATE(1334), + [sym_declaration_command] = STATE(1334), + [sym_unset_command] = STATE(1334), + [sym_command] = STATE(1334), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(225), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), + [aux_sym__statements_repeat1] = STATE(116), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), @@ -8459,16 +8487,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -8477,51 +8505,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(37), [anon_sym_GT_AMP] = ACTIONS(37), [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), [sym_comment] = ACTIONS(55), [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), + [sym_variable_name] = ACTIONS(229), }, [10] = { - [aux_sym__statements2] = STATE(8), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(6), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8567,38 +8595,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [11] = { - [sym__statements] = STATE(2596), - [sym_redirected_statement] = STATE(1314), - [sym_for_statement] = STATE(1314), - [sym_c_style_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_compound_statement] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_negated_command] = STATE(1314), - [sym_test_command] = STATE(1314), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), - [sym_command] = STATE(1314), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(233), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), + [sym__statements] = STATE(2634), + [sym_redirected_statement] = STATE(1334), + [sym_for_statement] = STATE(1334), + [sym_c_style_for_statement] = STATE(1334), + [sym_while_statement] = STATE(1334), + [sym_if_statement] = STATE(1334), + [sym_case_statement] = STATE(1334), + [sym_function_definition] = STATE(1334), + [sym_compound_statement] = STATE(1334), + [sym_subshell] = STATE(1334), + [sym_pipeline] = STATE(1334), + [sym_list] = STATE(1334), + [sym_negated_command] = STATE(1334), + [sym_test_command] = STATE(1334), + [sym_declaration_command] = STATE(1334), + [sym_unset_command] = STATE(1334), + [sym_command] = STATE(1334), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(225), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), [aux_sym__statements_repeat1] = STATE(116), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), @@ -8609,16 +8637,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -8627,53 +8655,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(37), [anon_sym_GT_AMP] = ACTIONS(37), [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), [sym_comment] = ACTIONS(55), [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), + [sym_variable_name] = ACTIONS(229), }, [12] = { - [sym__statements] = STATE(2534), - [sym_redirected_statement] = STATE(1314), - [sym_for_statement] = STATE(1314), - [sym_c_style_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_compound_statement] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_negated_command] = STATE(1314), - [sym_test_command] = STATE(1314), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), - [sym_command] = STATE(1314), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(233), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), + [sym__statements] = STATE(2596), + [sym_redirected_statement] = STATE(1334), + [sym_for_statement] = STATE(1334), + [sym_c_style_for_statement] = STATE(1334), + [sym_while_statement] = STATE(1334), + [sym_if_statement] = STATE(1334), + [sym_case_statement] = STATE(1334), + [sym_function_definition] = STATE(1334), + [sym_compound_statement] = STATE(1334), + [sym_subshell] = STATE(1334), + [sym_pipeline] = STATE(1334), + [sym_list] = STATE(1334), + [sym_negated_command] = STATE(1334), + [sym_test_command] = STATE(1334), + [sym_declaration_command] = STATE(1334), + [sym_unset_command] = STATE(1334), + [sym_command] = STATE(1334), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(225), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), [aux_sym__statements_repeat1] = STATE(116), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), @@ -8684,16 +8712,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -8702,52 +8730,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(37), [anon_sym_GT_AMP] = ACTIONS(37), [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), [sym_comment] = ACTIONS(55), [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), + [sym_variable_name] = ACTIONS(229), }, [13] = { - [sym__statements] = STATE(2782), - [sym_redirected_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_c_style_for_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_case_statement] = STATE(1357), - [sym_function_definition] = STATE(1357), - [sym_compound_statement] = STATE(1357), - [sym_subshell] = STATE(1357), - [sym_pipeline] = STATE(1357), - [sym_list] = STATE(1357), - [sym_negated_command] = STATE(1357), - [sym_test_command] = STATE(1357), - [sym_declaration_command] = STATE(1357), - [sym_unset_command] = STATE(1357), - [sym_command] = STATE(1357), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(266), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(117), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2737), + [sym_redirected_statement] = STATE(1390), + [sym_for_statement] = STATE(1390), + [sym_c_style_for_statement] = STATE(1390), + [sym_while_statement] = STATE(1390), + [sym_if_statement] = STATE(1390), + [sym_case_statement] = STATE(1390), + [sym_function_definition] = STATE(1390), + [sym_compound_statement] = STATE(1390), + [sym_subshell] = STATE(1390), + [sym_pipeline] = STATE(1390), + [sym_list] = STATE(1390), + [sym_negated_command] = STATE(1390), + [sym_test_command] = STATE(1390), + [sym_declaration_command] = STATE(1390), + [sym_unset_command] = STATE(1390), + [sym_command] = STATE(1390), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(236), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(113), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8791,37 +8819,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [14] = { - [sym__statements] = STATE(2790), - [sym_redirected_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_c_style_for_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_case_statement] = STATE(1357), - [sym_function_definition] = STATE(1357), - [sym_compound_statement] = STATE(1357), - [sym_subshell] = STATE(1357), - [sym_pipeline] = STATE(1357), - [sym_list] = STATE(1357), - [sym_negated_command] = STATE(1357), - [sym_test_command] = STATE(1357), - [sym_declaration_command] = STATE(1357), - [sym_unset_command] = STATE(1357), - [sym_command] = STATE(1357), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(266), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(117), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2705), + [sym_redirected_statement] = STATE(1390), + [sym_for_statement] = STATE(1390), + [sym_c_style_for_statement] = STATE(1390), + [sym_while_statement] = STATE(1390), + [sym_if_statement] = STATE(1390), + [sym_case_statement] = STATE(1390), + [sym_function_definition] = STATE(1390), + [sym_compound_statement] = STATE(1390), + [sym_subshell] = STATE(1390), + [sym_pipeline] = STATE(1390), + [sym_list] = STATE(1390), + [sym_negated_command] = STATE(1390), + [sym_test_command] = STATE(1390), + [sym_declaration_command] = STATE(1390), + [sym_unset_command] = STATE(1390), + [sym_command] = STATE(1390), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(236), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(113), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8865,37 +8893,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [15] = { - [sym__statements] = STATE(2794), - [sym_redirected_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_c_style_for_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_case_statement] = STATE(1357), - [sym_function_definition] = STATE(1357), - [sym_compound_statement] = STATE(1357), - [sym_subshell] = STATE(1357), - [sym_pipeline] = STATE(1357), - [sym_list] = STATE(1357), - [sym_negated_command] = STATE(1357), - [sym_test_command] = STATE(1357), - [sym_declaration_command] = STATE(1357), - [sym_unset_command] = STATE(1357), - [sym_command] = STATE(1357), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(266), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(117), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2703), + [sym_redirected_statement] = STATE(1390), + [sym_for_statement] = STATE(1390), + [sym_c_style_for_statement] = STATE(1390), + [sym_while_statement] = STATE(1390), + [sym_if_statement] = STATE(1390), + [sym_case_statement] = STATE(1390), + [sym_function_definition] = STATE(1390), + [sym_compound_statement] = STATE(1390), + [sym_subshell] = STATE(1390), + [sym_pipeline] = STATE(1390), + [sym_list] = STATE(1390), + [sym_negated_command] = STATE(1390), + [sym_test_command] = STATE(1390), + [sym_declaration_command] = STATE(1390), + [sym_unset_command] = STATE(1390), + [sym_command] = STATE(1390), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(236), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(113), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -8939,37 +8967,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [16] = { - [sym__statements] = STATE(2750), - [sym_redirected_statement] = STATE(1357), - [sym_for_statement] = STATE(1357), - [sym_c_style_for_statement] = STATE(1357), - [sym_while_statement] = STATE(1357), - [sym_if_statement] = STATE(1357), - [sym_case_statement] = STATE(1357), - [sym_function_definition] = STATE(1357), - [sym_compound_statement] = STATE(1357), - [sym_subshell] = STATE(1357), - [sym_pipeline] = STATE(1357), - [sym_list] = STATE(1357), - [sym_negated_command] = STATE(1357), - [sym_test_command] = STATE(1357), - [sym_declaration_command] = STATE(1357), - [sym_unset_command] = STATE(1357), - [sym_command] = STATE(1357), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(266), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(117), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2700), + [sym_redirected_statement] = STATE(1390), + [sym_for_statement] = STATE(1390), + [sym_c_style_for_statement] = STATE(1390), + [sym_while_statement] = STATE(1390), + [sym_if_statement] = STATE(1390), + [sym_case_statement] = STATE(1390), + [sym_function_definition] = STATE(1390), + [sym_compound_statement] = STATE(1390), + [sym_subshell] = STATE(1390), + [sym_pipeline] = STATE(1390), + [sym_list] = STATE(1390), + [sym_negated_command] = STATE(1390), + [sym_test_command] = STATE(1390), + [sym_declaration_command] = STATE(1390), + [sym_unset_command] = STATE(1390), + [sym_command] = STATE(1390), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(236), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(113), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9013,37 +9041,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [17] = { - [sym__statements] = STATE(2749), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2754), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9087,37 +9115,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [18] = { - [sym__statements] = STATE(2709), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2795), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9161,37 +9189,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [19] = { - [sym__statements] = STATE(2736), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2774), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9201,16 +9229,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -9234,41 +9262,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [20] = { - [aux_sym__statements2] = STATE(65), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2695), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), - [anon_sym_done] = ACTIONS(263), [anon_sym_if] = ACTIONS(69), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), @@ -9307,37 +9335,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [21] = { - [sym__statements] = STATE(2638), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1517), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2747), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1600), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9380,37 +9408,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [22] = { - [sym__statements] = STATE(2776), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2699), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1624), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9420,16 +9448,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -9453,37 +9481,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [23] = { - [sym__statements] = STATE(2664), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2769), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9526,37 +9554,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [24] = { - [sym__statements] = STATE(2674), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1550), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2729), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1533), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9599,37 +9627,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [25] = { - [sym__statements] = STATE(2668), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2725), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9672,37 +9700,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [26] = { - [sym__statements] = STATE(2667), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2724), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9745,37 +9773,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [27] = { - [sym__statements] = STATE(2787), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1531), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2754), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9818,37 +9846,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [28] = { - [sym__statements] = STATE(2630), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2771), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9891,37 +9919,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [29] = { - [sym__statements] = STATE(2680), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1575), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2772), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1580), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -9964,37 +9992,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [30] = { - [sym__statements] = STATE(2729), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2784), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10037,37 +10065,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [31] = { - [sym__statements] = STATE(2709), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(58), + [sym_redirected_statement] = STATE(1387), + [sym_for_statement] = STATE(1387), + [sym_c_style_for_statement] = STATE(1387), + [sym_while_statement] = STATE(1387), + [sym_if_statement] = STATE(1387), + [sym_case_statement] = STATE(1387), + [sym_function_definition] = STATE(1387), + [sym_compound_statement] = STATE(1387), + [sym_subshell] = STATE(1387), + [sym_pipeline] = STATE(1387), + [sym_list] = STATE(1387), + [sym_negated_command] = STATE(1387), + [sym_test_command] = STATE(1387), + [sym_declaration_command] = STATE(1387), + [sym_unset_command] = STATE(1387), + [sym_command] = STATE(1387), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(257), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10077,6 +10104,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(263), [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), @@ -10110,56 +10138,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [32] = { - [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2719), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(265), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -10183,37 +10211,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [33] = { - [sym__statements] = STATE(2730), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2787), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10256,36 +10284,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [34] = { - [aux_sym__statements2] = STATE(58), - [sym_redirected_statement] = STATE(1343), - [sym_for_statement] = STATE(1343), - [sym_c_style_for_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_case_statement] = STATE(1343), - [sym_function_definition] = STATE(1343), - [sym_compound_statement] = STATE(1343), - [sym_subshell] = STATE(1343), - [sym_pipeline] = STATE(1343), - [sym_list] = STATE(1343), - [sym_negated_command] = STATE(1343), - [sym_test_command] = STATE(1343), - [sym_declaration_command] = STATE(1343), - [sym_unset_command] = STATE(1343), - [sym_command] = STATE(1343), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(255), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2722), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1634), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10295,7 +10324,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(267), [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), @@ -10329,37 +10357,183 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [35] = { - [sym__statements] = STATE(2700), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(6), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(265), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(111), + }, + [36] = { + [aux_sym__statements2] = STATE(6), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(267), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(111), + }, + [37] = { + [sym__statements] = STATE(2734), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10401,184 +10575,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, - [36] = { - [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_done] = ACTIONS(269), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), - }, - [37] = { - [sym__statements] = STATE(2698), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1523), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), - }, [38] = { - [sym__statements] = STATE(2738), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1538), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2788), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1539), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10621,37 +10649,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [39] = { - [sym__statements] = STATE(2791), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2807), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10694,37 +10722,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [40] = { - [sym__statements] = STATE(2793), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2813), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10767,7 +10795,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [41] = { - [aux_sym__statements2] = STATE(36), + [aux_sym__statements2] = STATE(41), [sym_redirected_statement] = STATE(1387), [sym_for_statement] = STATE(1387), [sym_c_style_for_statement] = STATE(1387), @@ -10784,93 +10812,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1387), [sym_unset_command] = STATE(1387), [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_done] = ACTIONS(271), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(257), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(119), + [anon_sym_for] = ACTIONS(122), + [anon_sym_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_while] = ACTIONS(128), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(136), + [anon_sym_function] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(154), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(160), + [anon_sym_unsetenv] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(166), + [anon_sym_AMP_GT] = ACTIONS(163), + [anon_sym_AMP_GT_GT] = ACTIONS(166), + [anon_sym_LT_AMP] = ACTIONS(166), + [anon_sym_GT_AMP] = ACTIONS(166), + [anon_sym_GT_PIPE] = ACTIONS(166), + [anon_sym_DOLLAR] = ACTIONS(169), + [sym__special_character] = ACTIONS(172), + [anon_sym_DQUOTE] = ACTIONS(175), + [sym_raw_string] = ACTIONS(178), + [sym_ansii_c_string] = ACTIONS(178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(181), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(184), + [anon_sym_BQUOTE] = ACTIONS(187), + [anon_sym_LT_LPAREN] = ACTIONS(190), + [anon_sym_GT_LPAREN] = ACTIONS(190), [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), + [sym_file_descriptor] = ACTIONS(193), + [sym_variable_name] = ACTIONS(196), }, [42] = { - [sym__statements] = STATE(2796), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1573), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2816), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1562), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10913,37 +10941,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [43] = { - [sym__statements] = STATE(2780), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2801), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -10986,37 +11014,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [44] = { - [sym__statements] = STATE(2788), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2794), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11059,37 +11087,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [45] = { - [sym__statements] = STATE(2795), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1627), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2793), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1596), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11132,37 +11160,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [46] = { - [sym__statements] = STATE(2766), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2760), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11206,36 +11234,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [47] = { [sym__statements] = STATE(2758), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11278,37 +11306,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [48] = { - [sym__statements] = STATE(2755), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1579), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2756), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1601), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11351,37 +11379,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [49] = { - [sym__statements] = STATE(2723), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2731), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11424,36 +11452,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [50] = { - [aux_sym__statements2] = STATE(67), - [sym_redirected_statement] = STATE(1343), - [sym_for_statement] = STATE(1343), - [sym_c_style_for_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_case_statement] = STATE(1343), - [sym_function_definition] = STATE(1343), - [sym_compound_statement] = STATE(1343), - [sym_subshell] = STATE(1343), - [sym_pipeline] = STATE(1343), - [sym_list] = STATE(1343), - [sym_negated_command] = STATE(1343), - [sym_test_command] = STATE(1343), - [sym_declaration_command] = STATE(1343), - [sym_unset_command] = STATE(1343), - [sym_command] = STATE(1343), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(255), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2795), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11463,7 +11492,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), @@ -11497,37 +11525,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [51] = { - [sym__statements] = STATE(2722), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2730), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11570,37 +11598,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [52] = { - [sym__statements] = STATE(2720), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1584), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2728), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1640), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11643,37 +11671,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [53] = { - [sym__statements] = STATE(2706), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2710), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11716,37 +11744,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [54] = { - [sym__statements] = STATE(2704), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2707), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11789,37 +11817,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [55] = { - [sym__statements] = STATE(2697), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1587), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2704), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1631), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11862,37 +11890,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [56] = { - [sym__statements] = STATE(2682), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2683), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -11935,37 +11963,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [57] = { - [sym__statements] = STATE(2659), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2682), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12008,36 +12036,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [58] = { - [aux_sym__statements2] = STATE(67), - [sym_redirected_statement] = STATE(1343), - [sym_for_statement] = STATE(1343), - [sym_c_style_for_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_case_statement] = STATE(1343), - [sym_function_definition] = STATE(1343), - [sym_compound_statement] = STATE(1343), - [sym_subshell] = STATE(1343), - [sym_pipeline] = STATE(1343), - [sym_list] = STATE(1343), - [sym_negated_command] = STATE(1343), - [sym_test_command] = STATE(1343), - [sym_declaration_command] = STATE(1343), - [sym_unset_command] = STATE(1343), - [sym_command] = STATE(1343), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(255), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(41), + [sym_redirected_statement] = STATE(1387), + [sym_for_statement] = STATE(1387), + [sym_c_style_for_statement] = STATE(1387), + [sym_while_statement] = STATE(1387), + [sym_if_statement] = STATE(1387), + [sym_case_statement] = STATE(1387), + [sym_function_definition] = STATE(1387), + [sym_compound_statement] = STATE(1387), + [sym_subshell] = STATE(1387), + [sym_pipeline] = STATE(1387), + [sym_list] = STATE(1387), + [sym_negated_command] = STATE(1387), + [sym_test_command] = STATE(1387), + [sym_declaration_command] = STATE(1387), + [sym_unset_command] = STATE(1387), + [sym_command] = STATE(1387), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(257), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12047,7 +12075,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(275), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), @@ -12081,37 +12109,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [59] = { - [sym__statements] = STATE(2657), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1616), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2677), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1615), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12154,36 +12182,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [60] = { - [aux_sym__statements2] = STATE(50), - [sym_redirected_statement] = STATE(1343), - [sym_for_statement] = STATE(1343), - [sym_c_style_for_statement] = STATE(1343), - [sym_while_statement] = STATE(1343), - [sym_if_statement] = STATE(1343), - [sym_case_statement] = STATE(1343), - [sym_function_definition] = STATE(1343), - [sym_compound_statement] = STATE(1343), - [sym_subshell] = STATE(1343), - [sym_pipeline] = STATE(1343), - [sym_list] = STATE(1343), - [sym_negated_command] = STATE(1343), - [sym_test_command] = STATE(1343), - [sym_declaration_command] = STATE(1343), - [sym_unset_command] = STATE(1343), - [sym_command] = STATE(1343), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(255), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2779), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1593), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12193,7 +12222,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), @@ -12227,37 +12255,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [61] = { - [sym__statements] = STATE(2658), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2668), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12300,37 +12328,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [62] = { - [sym__statements] = STATE(2656), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2678), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12373,37 +12401,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [63] = { - [sym__statements] = STATE(2665), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1617), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2680), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1592), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12446,42 +12474,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [64] = { - [aux_sym__statements2] = STATE(32), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(6), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(273), [anon_sym_if] = ACTIONS(69), - [anon_sym_fi] = ACTIONS(279), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), @@ -12519,56 +12547,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [65] = { - [aux_sym__statements2] = STATE(6), - [sym_redirected_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_c_style_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_compound_statement] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_negated_command] = STATE(1387), - [sym_test_command] = STATE(1387), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), - [sym_command] = STATE(1387), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(236), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2776), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), - [anon_sym_done] = ACTIONS(281), [anon_sym_if] = ACTIONS(69), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -12592,37 +12620,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [66] = { - [sym__statements] = STATE(2789), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1601), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2744), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12665,7 +12693,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [67] = { - [aux_sym__statements2] = STATE(67), + [sym__statements] = STATE(2745), [sym_redirected_statement] = STATE(1343), [sym_for_statement] = STATE(1343), [sym_c_style_for_statement] = STATE(1343), @@ -12682,93 +12710,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1343), [sym_unset_command] = STATE(1343), [sym_command] = STATE(1343), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(255), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(122), - [anon_sym_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_while] = ACTIONS(128), - [anon_sym_if] = ACTIONS(133), - [anon_sym_case] = ACTIONS(136), - [anon_sym_function] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(154), - [anon_sym_declare] = ACTIONS(157), - [anon_sym_typeset] = ACTIONS(157), - [anon_sym_export] = ACTIONS(157), - [anon_sym_readonly] = ACTIONS(157), - [anon_sym_local] = ACTIONS(157), - [anon_sym_unset] = ACTIONS(160), - [anon_sym_unsetenv] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(163), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_AMP_GT] = ACTIONS(163), - [anon_sym_AMP_GT_GT] = ACTIONS(166), - [anon_sym_LT_AMP] = ACTIONS(166), - [anon_sym_GT_AMP] = ACTIONS(166), - [anon_sym_GT_PIPE] = ACTIONS(166), - [anon_sym_DOLLAR] = ACTIONS(169), - [sym__special_character] = ACTIONS(172), - [anon_sym_DQUOTE] = ACTIONS(175), - [sym_raw_string] = ACTIONS(178), - [sym_ansii_c_string] = ACTIONS(178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(181), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(184), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(190), - [anon_sym_GT_LPAREN] = ACTIONS(190), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(193), - [sym_variable_name] = ACTIONS(196), - }, - [68] = { - [sym__statements] = STATE(2655), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1534), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12778,6 +12733,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(111), + }, + [68] = { + [aux_sym__statements2] = STATE(35), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(275), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), @@ -12811,41 +12839,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [69] = { - [sym__statements] = STATE(2699), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(64), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(277), [anon_sym_if] = ACTIONS(69), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), @@ -12884,37 +12912,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [70] = { - [sym__statements] = STATE(2691), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2746), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -12957,37 +12985,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [71] = { - [sym__statements] = STATE(2693), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2755), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13030,37 +13058,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [72] = { - [sym__statements] = STATE(2695), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1591), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2759), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1551), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13103,110 +13131,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [73] = { - [sym__statements] = STATE(2701), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), - }, - [74] = { - [sym__statements] = STATE(2671), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1556), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2688), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1616), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13248,38 +13203,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, + [74] = { + [sym__statements] = STATE(2692), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(111), + }, [75] = { - [sym__statements] = STATE(2731), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2809), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13322,41 +13350,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [76] = { - [sym__statements] = STATE(2724), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(36), + [sym_redirected_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_c_style_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_compound_statement] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_negated_command] = STATE(1393), + [sym_test_command] = STATE(1393), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), + [sym_command] = STATE(1393), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(268), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(279), [anon_sym_if] = ACTIONS(69), [anon_sym_case] = ACTIONS(77), [anon_sym_function] = ACTIONS(79), @@ -13395,37 +13423,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [77] = { - [sym__statements] = STATE(2732), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2812), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13468,37 +13496,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [78] = { - [sym__statements] = STATE(2727), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2694), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13508,16 +13536,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -13541,37 +13569,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [79] = { - [sym__statements] = STATE(2636), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2815), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1542), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13581,16 +13609,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -13615,36 +13643,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [80] = { [sym__statements] = STATE(2670), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1522), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13687,110 +13715,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [81] = { - [sym__statements] = STATE(2769), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), - }, - [82] = { - [sym__statements] = STATE(2767), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2808), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13832,38 +13787,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, + [82] = { + [sym__statements] = STATE(2732), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1614), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(111), + }, [83] = { - [sym__statements] = STATE(2763), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1598), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2806), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1544), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13906,37 +13934,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [84] = { - [sym__statements] = STATE(2734), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1576), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2735), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -13979,37 +14007,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [85] = { - [sym__statements] = STATE(2634), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2765), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1585), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14052,37 +14080,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [86] = { - [sym__statements] = STATE(2747), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2690), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14125,37 +14153,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [87] = { - [sym__statements] = STATE(2719), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2689), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14198,37 +14226,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [88] = { - [sym__statements] = STATE(2742), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1580), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2686), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1575), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14271,37 +14299,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [89] = { - [sym__statements] = STATE(2746), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2814), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14344,37 +14372,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [90] = { - [sym__statements] = STATE(2684), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2675), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14417,37 +14445,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [91] = { - [sym__statements] = STATE(2740), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1572), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2766), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14457,16 +14485,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -14490,37 +14518,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [92] = { - [sym__statements] = STATE(2762), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2767), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14563,37 +14591,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [93] = { - [sym__statements] = STATE(2764), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2698), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14636,37 +14664,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [94] = { - [sym__statements] = STATE(2765), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1624), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2796), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1537), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14709,37 +14737,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [95] = { - [sym__statements] = STATE(2683), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1563), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2679), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1611), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14782,37 +14810,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [96] = { - [sym__statements] = STATE(2632), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2797), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14822,16 +14850,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -14855,37 +14883,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [97] = { - [sym__statements] = STATE(2633), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2716), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -14928,37 +14956,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [98] = { - [sym__statements] = STATE(2635), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1521), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2717), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1637), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15001,37 +15029,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [99] = { - [sym__statements] = STATE(2783), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2800), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15074,37 +15102,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [100] = { - [sym__statements] = STATE(2786), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [aux_sym__statements2] = STATE(106), + [sym_redirected_statement] = STATE(1387), + [sym_for_statement] = STATE(1387), + [sym_c_style_for_statement] = STATE(1387), + [sym_while_statement] = STATE(1387), + [sym_if_statement] = STATE(1387), + [sym_case_statement] = STATE(1387), + [sym_function_definition] = STATE(1387), + [sym_compound_statement] = STATE(1387), + [sym_subshell] = STATE(1387), + [sym_pipeline] = STATE(1387), + [sym_list] = STATE(1387), + [sym_negated_command] = STATE(1387), + [sym_test_command] = STATE(1387), + [sym_declaration_command] = STATE(1387), + [sym_unset_command] = STATE(1387), + [sym_command] = STATE(1387), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(257), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15114,16 +15141,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -15147,37 +15175,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [101] = { - [sym__statements] = STATE(2749), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2819), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1584), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15220,37 +15248,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [102] = { - [sym__statements] = STATE(2741), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2822), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15260,16 +15288,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -15293,37 +15321,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [103] = { - [sym__statements] = STATE(2652), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2751), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15366,37 +15394,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [104] = { - [sym__statements] = STATE(2735), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2763), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15439,110 +15467,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [105] = { - [sym__statements] = STATE(2739), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), - }, - [106] = { - [sym__statements] = STATE(2737), - [sym_redirected_statement] = STATE(1327), - [sym_for_statement] = STATE(1327), - [sym_c_style_for_statement] = STATE(1327), - [sym_while_statement] = STATE(1327), - [sym_if_statement] = STATE(1327), - [sym_case_statement] = STATE(1327), - [sym_function_definition] = STATE(1327), - [sym_compound_statement] = STATE(1327), - [sym_subshell] = STATE(1327), - [sym_pipeline] = STATE(1327), - [sym_list] = STATE(1327), - [sym_negated_command] = STATE(1327), - [sym_test_command] = STATE(1327), - [sym_declaration_command] = STATE(1327), - [sym_unset_command] = STATE(1327), - [sym_command] = STATE(1327), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(227), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(1586), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(109), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2757), + [sym_redirected_statement] = STATE(1347), + [sym_for_statement] = STATE(1347), + [sym_c_style_for_statement] = STATE(1347), + [sym_while_statement] = STATE(1347), + [sym_if_statement] = STATE(1347), + [sym_case_statement] = STATE(1347), + [sym_function_definition] = STATE(1347), + [sym_compound_statement] = STATE(1347), + [sym_subshell] = STATE(1347), + [sym_pipeline] = STATE(1347), + [sym_list] = STATE(1347), + [sym_negated_command] = STATE(1347), + [sym_test_command] = STATE(1347), + [sym_declaration_command] = STATE(1347), + [sym_unset_command] = STATE(1347), + [sym_command] = STATE(1347), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(219), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(1603), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(118), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15584,38 +15539,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, + [106] = { + [aux_sym__statements2] = STATE(41), + [sym_redirected_statement] = STATE(1387), + [sym_for_statement] = STATE(1387), + [sym_c_style_for_statement] = STATE(1387), + [sym_while_statement] = STATE(1387), + [sym_if_statement] = STATE(1387), + [sym_case_statement] = STATE(1387), + [sym_function_definition] = STATE(1387), + [sym_compound_statement] = STATE(1387), + [sym_subshell] = STATE(1387), + [sym_pipeline] = STATE(1387), + [sym_list] = STATE(1387), + [sym_negated_command] = STATE(1387), + [sym_test_command] = STATE(1387), + [sym_declaration_command] = STATE(1387), + [sym_unset_command] = STATE(1387), + [sym_command] = STATE(1387), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(257), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(111), + }, [107] = { - [sym__statements] = STATE(2653), - [sym_redirected_statement] = STATE(1326), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_compound_statement] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(115), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym__statements] = STATE(2752), + [sym_redirected_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_c_style_for_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_case_statement] = STATE(1343), + [sym_function_definition] = STATE(1343), + [sym_compound_statement] = STATE(1343), + [sym_subshell] = STATE(1343), + [sym_pipeline] = STATE(1343), + [sym_list] = STATE(1343), + [sym_negated_command] = STATE(1343), + [sym_test_command] = STATE(1343), + [sym_declaration_command] = STATE(1343), + [sym_unset_command] = STATE(1343), + [sym_command] = STATE(1343), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(114), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15658,36 +15686,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [108] = { - [sym__terminated_statement] = STATE(2710), - [sym_redirected_statement] = STATE(1342), - [sym_for_statement] = STATE(1342), - [sym_c_style_for_statement] = STATE(1342), - [sym_while_statement] = STATE(1342), - [sym_if_statement] = STATE(1342), - [sym_case_statement] = STATE(1342), - [sym_function_definition] = STATE(1342), - [sym_compound_statement] = STATE(1342), - [sym_subshell] = STATE(1342), - [sym_pipeline] = STATE(1342), - [sym_list] = STATE(1342), - [sym_negated_command] = STATE(1342), - [sym_test_command] = STATE(1342), - [sym_declaration_command] = STATE(1342), - [sym_unset_command] = STATE(1342), - [sym_command] = STATE(1342), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(237), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__terminated_statement] = STATE(2588), + [sym_redirected_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_c_style_for_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_case_statement] = STATE(1388), + [sym_function_definition] = STATE(1388), + [sym_compound_statement] = STATE(1388), + [sym_subshell] = STATE(1388), + [sym_pipeline] = STATE(1388), + [sym_list] = STATE(1388), + [sym_negated_command] = STATE(1388), + [sym_test_command] = STATE(1388), + [sym_declaration_command] = STATE(1388), + [sym_unset_command] = STATE(1388), + [sym_command] = STATE(1388), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(258), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15730,36 +15758,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [109] = { - [sym_redirected_statement] = STATE(1318), - [sym_for_statement] = STATE(1318), - [sym_c_style_for_statement] = STATE(1318), - [sym_while_statement] = STATE(1318), - [sym_if_statement] = STATE(1318), - [sym_case_statement] = STATE(1318), - [sym_function_definition] = STATE(1318), - [sym_compound_statement] = STATE(1318), - [sym_subshell] = STATE(1318), - [sym_pipeline] = STATE(1318), - [sym_list] = STATE(1318), - [sym_negated_command] = STATE(1318), - [sym_test_command] = STATE(1318), - [sym_declaration_command] = STATE(1318), - [sym_unset_command] = STATE(1318), - [sym_command] = STATE(1318), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(220), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(118), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__terminated_statement] = STATE(2761), + [sym_redirected_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_c_style_for_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_case_statement] = STATE(1388), + [sym_function_definition] = STATE(1388), + [sym_compound_statement] = STATE(1388), + [sym_subshell] = STATE(1388), + [sym_pipeline] = STATE(1388), + [sym_list] = STATE(1388), + [sym_negated_command] = STATE(1388), + [sym_test_command] = STATE(1388), + [sym_declaration_command] = STATE(1388), + [sym_unset_command] = STATE(1388), + [sym_command] = STATE(1388), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(258), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15802,108 +15830,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [110] = { - [sym__terminated_statement] = STATE(2536), - [sym_redirected_statement] = STATE(1342), - [sym_for_statement] = STATE(1342), - [sym_c_style_for_statement] = STATE(1342), - [sym_while_statement] = STATE(1342), - [sym_if_statement] = STATE(1342), - [sym_case_statement] = STATE(1342), - [sym_function_definition] = STATE(1342), - [sym_compound_statement] = STATE(1342), - [sym_subshell] = STATE(1342), - [sym_pipeline] = STATE(1342), - [sym_list] = STATE(1342), - [sym_negated_command] = STATE(1342), - [sym_test_command] = STATE(1342), - [sym_declaration_command] = STATE(1342), - [sym_unset_command] = STATE(1342), - [sym_command] = STATE(1342), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(237), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_redirected_statement] = STATE(1362), + [sym_for_statement] = STATE(1362), + [sym_c_style_for_statement] = STATE(1362), + [sym_while_statement] = STATE(1362), + [sym_if_statement] = STATE(1362), + [sym_case_statement] = STATE(1362), + [sym_function_definition] = STATE(1362), + [sym_compound_statement] = STATE(1362), + [sym_subshell] = STATE(1362), + [sym_pipeline] = STATE(1362), + [sym_list] = STATE(1362), + [sym_negated_command] = STATE(1362), + [sym_test_command] = STATE(1362), + [sym_declaration_command] = STATE(1362), + [sym_unset_command] = STATE(1362), + [sym_command] = STATE(1362), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(253), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(110), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(285), + [anon_sym_for] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(291), + [anon_sym_while] = ACTIONS(294), + [anon_sym_if] = ACTIONS(297), + [anon_sym_case] = ACTIONS(300), + [anon_sym_function] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(306), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_BANG] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(318), + [anon_sym_declare] = ACTIONS(321), + [anon_sym_typeset] = ACTIONS(321), + [anon_sym_export] = ACTIONS(321), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_local] = ACTIONS(321), + [anon_sym_unset] = ACTIONS(324), + [anon_sym_unsetenv] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(327), + [anon_sym_GT] = ACTIONS(327), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_AMP_GT] = ACTIONS(327), + [anon_sym_AMP_GT_GT] = ACTIONS(330), + [anon_sym_LT_AMP] = ACTIONS(330), + [anon_sym_GT_AMP] = ACTIONS(330), + [anon_sym_GT_PIPE] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(333), + [sym__special_character] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(339), + [sym_raw_string] = ACTIONS(342), + [sym_ansii_c_string] = ACTIONS(342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(348), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LT_LPAREN] = ACTIONS(354), + [anon_sym_GT_LPAREN] = ACTIONS(354), [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), + [sym_file_descriptor] = ACTIONS(357), + [sym_variable_name] = ACTIONS(360), }, [111] = { - [sym__terminated_statement] = STATE(2628), - [sym_redirected_statement] = STATE(1342), - [sym_for_statement] = STATE(1342), - [sym_c_style_for_statement] = STATE(1342), - [sym_while_statement] = STATE(1342), - [sym_if_statement] = STATE(1342), - [sym_case_statement] = STATE(1342), - [sym_function_definition] = STATE(1342), - [sym_compound_statement] = STATE(1342), - [sym_subshell] = STATE(1342), - [sym_pipeline] = STATE(1342), - [sym_list] = STATE(1342), - [sym_negated_command] = STATE(1342), - [sym_test_command] = STATE(1342), - [sym_declaration_command] = STATE(1342), - [sym_unset_command] = STATE(1342), - [sym_command] = STATE(1342), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(237), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__terminated_statement] = STATE(2647), + [sym_redirected_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_c_style_for_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_case_statement] = STATE(1388), + [sym_function_definition] = STATE(1388), + [sym_compound_statement] = STATE(1388), + [sym_subshell] = STATE(1388), + [sym_pipeline] = STATE(1388), + [sym_list] = STATE(1388), + [sym_negated_command] = STATE(1388), + [sym_test_command] = STATE(1388), + [sym_declaration_command] = STATE(1388), + [sym_unset_command] = STATE(1388), + [sym_command] = STATE(1388), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(258), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -15946,108 +15974,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [112] = { - [sym__terminated_statement] = STATE(2551), - [sym_redirected_statement] = STATE(1342), - [sym_for_statement] = STATE(1342), - [sym_c_style_for_statement] = STATE(1342), - [sym_while_statement] = STATE(1342), - [sym_if_statement] = STATE(1342), - [sym_case_statement] = STATE(1342), - [sym_function_definition] = STATE(1342), - [sym_compound_statement] = STATE(1342), - [sym_subshell] = STATE(1342), - [sym_pipeline] = STATE(1342), - [sym_list] = STATE(1342), - [sym_negated_command] = STATE(1342), - [sym_test_command] = STATE(1342), - [sym_declaration_command] = STATE(1342), - [sym_unset_command] = STATE(1342), - [sym_command] = STATE(1342), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(237), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(61), - [anon_sym_for] = ACTIONS(63), - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_case] = ACTIONS(77), - [anon_sym_function] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansii_c_string] = ACTIONS(101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), - [anon_sym_BQUOTE] = ACTIONS(107), - [anon_sym_LT_LPAREN] = ACTIONS(109), - [anon_sym_GT_LPAREN] = ACTIONS(109), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(111), - }, - [113] = { - [sym_redirected_statement] = STATE(1329), - [sym_for_statement] = STATE(1329), - [sym_c_style_for_statement] = STATE(1329), - [sym_while_statement] = STATE(1329), - [sym_if_statement] = STATE(1329), - [sym_case_statement] = STATE(1329), - [sym_function_definition] = STATE(1329), - [sym_compound_statement] = STATE(1329), - [sym_subshell] = STATE(1329), - [sym_pipeline] = STATE(1329), - [sym_list] = STATE(1329), - [sym_negated_command] = STATE(1329), - [sym_test_command] = STATE(1329), - [sym_declaration_command] = STATE(1329), - [sym_unset_command] = STATE(1329), - [sym_command] = STATE(1329), - [sym_command_name] = STATE(151), - [sym_variable_assignment] = STATE(228), - [sym_subscript] = STATE(2541), - [sym_file_redirect] = STATE(592), - [sym_concatenation] = STATE(560), - [sym_string] = STATE(241), - [sym_simple_expansion] = STATE(241), - [sym_string_expansion] = STATE(241), - [sym_expansion] = STATE(241), - [sym_command_substitution] = STATE(241), - [sym_process_substitution] = STATE(241), - [aux_sym__statements_repeat1] = STATE(118), - [aux_sym_command_repeat1] = STATE(592), - [aux_sym__literal_repeat1] = STATE(301), + [sym_redirected_statement] = STATE(1323), + [sym_for_statement] = STATE(1323), + [sym_c_style_for_statement] = STATE(1323), + [sym_while_statement] = STATE(1323), + [sym_if_statement] = STATE(1323), + [sym_case_statement] = STATE(1323), + [sym_function_definition] = STATE(1323), + [sym_compound_statement] = STATE(1323), + [sym_subshell] = STATE(1323), + [sym_pipeline] = STATE(1323), + [sym_list] = STATE(1323), + [sym_negated_command] = STATE(1323), + [sym_test_command] = STATE(1323), + [sym_declaration_command] = STATE(1323), + [sym_unset_command] = STATE(1323), + [sym_command] = STATE(1323), + [sym_command_name] = STATE(168), + [sym_variable_assignment] = STATE(227), + [sym_subscript] = STATE(2625), + [sym_file_redirect] = STATE(571), + [sym_concatenation] = STATE(564), + [sym_string] = STATE(246), + [sym_simple_expansion] = STATE(246), + [sym_string_expansion] = STATE(246), + [sym_expansion] = STATE(246), + [sym_command_substitution] = STATE(246), + [sym_process_substitution] = STATE(246), + [aux_sym__statements_repeat1] = STATE(110), + [aux_sym_command_repeat1] = STATE(571), + [aux_sym__literal_repeat1] = STATE(473), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_LPAREN_LPAREN] = ACTIONS(11), @@ -16089,37 +16045,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(59), }, - [114] = { - [sym__terminated_statement] = STATE(2718), - [sym_redirected_statement] = STATE(1342), - [sym_for_statement] = STATE(1342), - [sym_c_style_for_statement] = STATE(1342), - [sym_while_statement] = STATE(1342), - [sym_if_statement] = STATE(1342), - [sym_case_statement] = STATE(1342), - [sym_function_definition] = STATE(1342), - [sym_compound_statement] = STATE(1342), - [sym_subshell] = STATE(1342), - [sym_pipeline] = STATE(1342), - [sym_list] = STATE(1342), - [sym_negated_command] = STATE(1342), - [sym_test_command] = STATE(1342), - [sym_declaration_command] = STATE(1342), - [sym_unset_command] = STATE(1342), - [sym_command] = STATE(1342), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(237), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [113] = { + [sym_redirected_statement] = STATE(1358), + [sym_for_statement] = STATE(1358), + [sym_c_style_for_statement] = STATE(1358), + [sym_while_statement] = STATE(1358), + [sym_if_statement] = STATE(1358), + [sym_case_statement] = STATE(1358), + [sym_function_definition] = STATE(1358), + [sym_compound_statement] = STATE(1358), + [sym_subshell] = STATE(1358), + [sym_pipeline] = STATE(1358), + [sym_list] = STATE(1358), + [sym_negated_command] = STATE(1358), + [sym_test_command] = STATE(1358), + [sym_declaration_command] = STATE(1358), + [sym_unset_command] = STATE(1358), + [sym_command] = STATE(1358), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(255), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(110), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -16161,7 +16117,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, - [115] = { + [114] = { [sym_redirected_statement] = STATE(1337), [sym_for_statement] = STATE(1337), [sym_c_style_for_statement] = STATE(1337), @@ -16178,20 +16134,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1337), [sym_unset_command] = STATE(1337), [sym_command] = STATE(1337), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(250), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(118), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(271), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(110), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -16233,38 +16189,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, - [116] = { - [sym_redirected_statement] = STATE(1311), - [sym_for_statement] = STATE(1311), - [sym_c_style_for_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_function_definition] = STATE(1311), - [sym_compound_statement] = STATE(1311), - [sym_subshell] = STATE(1311), - [sym_pipeline] = STATE(1311), - [sym_list] = STATE(1311), - [sym_negated_command] = STATE(1311), - [sym_test_command] = STATE(1311), - [sym_declaration_command] = STATE(1311), - [sym_unset_command] = STATE(1311), - [sym_command] = STATE(1311), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(231), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), - [aux_sym__statements_repeat1] = STATE(118), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), + [115] = { + [sym__terminated_statement] = STATE(2713), + [sym_redirected_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_c_style_for_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_case_statement] = STATE(1388), + [sym_function_definition] = STATE(1388), + [sym_compound_statement] = STATE(1388), + [sym_subshell] = STATE(1388), + [sym_pipeline] = STATE(1388), + [sym_list] = STATE(1388), + [sym_negated_command] = STATE(1388), + [sym_test_command] = STATE(1388), + [sym_declaration_command] = STATE(1388), + [sym_unset_command] = STATE(1388), + [sym_command] = STATE(1388), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(258), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), @@ -16273,16 +16229,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -16291,51 +16247,123 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(37), [anon_sym_GT_AMP] = ACTIONS(37), [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(55), [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), + [sym_variable_name] = ACTIONS(111), + }, + [116] = { + [sym_redirected_statement] = STATE(1336), + [sym_for_statement] = STATE(1336), + [sym_c_style_for_statement] = STATE(1336), + [sym_while_statement] = STATE(1336), + [sym_if_statement] = STATE(1336), + [sym_case_statement] = STATE(1336), + [sym_function_definition] = STATE(1336), + [sym_compound_statement] = STATE(1336), + [sym_subshell] = STATE(1336), + [sym_pipeline] = STATE(1336), + [sym_list] = STATE(1336), + [sym_negated_command] = STATE(1336), + [sym_test_command] = STATE(1336), + [sym_declaration_command] = STATE(1336), + [sym_unset_command] = STATE(1336), + [sym_command] = STATE(1336), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(229), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), + [aux_sym__statements_repeat1] = STATE(110), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(229), }, [117] = { - [sym_redirected_statement] = STATE(1353), - [sym_for_statement] = STATE(1353), - [sym_c_style_for_statement] = STATE(1353), - [sym_while_statement] = STATE(1353), - [sym_if_statement] = STATE(1353), - [sym_case_statement] = STATE(1353), - [sym_function_definition] = STATE(1353), - [sym_compound_statement] = STATE(1353), - [sym_subshell] = STATE(1353), - [sym_pipeline] = STATE(1353), - [sym_list] = STATE(1353), - [sym_negated_command] = STATE(1353), - [sym_test_command] = STATE(1353), - [sym_declaration_command] = STATE(1353), - [sym_unset_command] = STATE(1353), - [sym_command] = STATE(1353), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(268), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(118), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym__terminated_statement] = STATE(2665), + [sym_redirected_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_c_style_for_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_case_statement] = STATE(1388), + [sym_function_definition] = STATE(1388), + [sym_compound_statement] = STATE(1388), + [sym_subshell] = STATE(1388), + [sym_pipeline] = STATE(1388), + [sym_list] = STATE(1388), + [sym_negated_command] = STATE(1388), + [sym_test_command] = STATE(1388), + [sym_declaration_command] = STATE(1388), + [sym_unset_command] = STATE(1388), + [sym_command] = STATE(1388), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(258), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -16378,108 +16406,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [118] = { - [sym_redirected_statement] = STATE(1355), - [sym_for_statement] = STATE(1355), - [sym_c_style_for_statement] = STATE(1355), - [sym_while_statement] = STATE(1355), - [sym_if_statement] = STATE(1355), - [sym_case_statement] = STATE(1355), - [sym_function_definition] = STATE(1355), - [sym_compound_statement] = STATE(1355), - [sym_subshell] = STATE(1355), - [sym_pipeline] = STATE(1355), - [sym_list] = STATE(1355), - [sym_negated_command] = STATE(1355), - [sym_test_command] = STATE(1355), - [sym_declaration_command] = STATE(1355), - [sym_unset_command] = STATE(1355), - [sym_command] = STATE(1355), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(270), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym__statements_repeat1] = STATE(118), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), - [sym_word] = ACTIONS(285), - [anon_sym_for] = ACTIONS(288), - [anon_sym_LPAREN_LPAREN] = ACTIONS(291), - [anon_sym_while] = ACTIONS(294), - [anon_sym_if] = ACTIONS(297), - [anon_sym_case] = ACTIONS(300), - [anon_sym_function] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(312), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(318), - [anon_sym_declare] = ACTIONS(321), - [anon_sym_typeset] = ACTIONS(321), - [anon_sym_export] = ACTIONS(321), - [anon_sym_readonly] = ACTIONS(321), - [anon_sym_local] = ACTIONS(321), - [anon_sym_unset] = ACTIONS(324), - [anon_sym_unsetenv] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(327), - [anon_sym_GT] = ACTIONS(327), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(327), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [anon_sym_GT_PIPE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(333), - [sym__special_character] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(339), - [sym_raw_string] = ACTIONS(342), - [sym_ansii_c_string] = ACTIONS(342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(348), - [anon_sym_BQUOTE] = ACTIONS(351), - [anon_sym_LT_LPAREN] = ACTIONS(354), - [anon_sym_GT_LPAREN] = ACTIONS(354), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(357), - [sym_variable_name] = ACTIONS(360), - }, - [119] = { - [sym_redirected_statement] = STATE(1334), - [sym_for_statement] = STATE(1334), - [sym_c_style_for_statement] = STATE(1334), - [sym_while_statement] = STATE(1334), - [sym_if_statement] = STATE(1334), - [sym_case_statement] = STATE(1334), - [sym_function_definition] = STATE(1334), - [sym_compound_statement] = STATE(1334), - [sym_subshell] = STATE(1334), - [sym_pipeline] = STATE(1334), - [sym_list] = STATE(1334), - [sym_negated_command] = STATE(1334), - [sym_test_command] = STATE(1334), - [sym_declaration_command] = STATE(1334), - [sym_unset_command] = STATE(1334), - [sym_command] = STATE(1334), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(229), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), + [sym_redirected_statement] = STATE(1331), + [sym_for_statement] = STATE(1331), + [sym_c_style_for_statement] = STATE(1331), + [sym_while_statement] = STATE(1331), + [sym_if_statement] = STATE(1331), + [sym_case_statement] = STATE(1331), + [sym_function_definition] = STATE(1331), + [sym_compound_statement] = STATE(1331), + [sym_subshell] = STATE(1331), + [sym_pipeline] = STATE(1331), + [sym_list] = STATE(1331), + [sym_negated_command] = STATE(1331), + [sym_test_command] = STATE(1331), + [sym_declaration_command] = STATE(1331), + [sym_unset_command] = STATE(1331), + [sym_command] = STATE(1331), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(224), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym__statements_repeat1] = STATE(110), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), + [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), @@ -16488,16 +16445,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -16506,50 +16463,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(37), [anon_sym_GT_AMP] = ACTIONS(37), [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(55), [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), + [sym_variable_name] = ACTIONS(111), }, - [120] = { - [sym_redirected_statement] = STATE(1308), - [sym_for_statement] = STATE(1308), - [sym_c_style_for_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_function_definition] = STATE(1308), - [sym_compound_statement] = STATE(1308), - [sym_subshell] = STATE(1308), - [sym_pipeline] = STATE(1308), - [sym_list] = STATE(1308), - [sym_negated_command] = STATE(1308), - [sym_test_command] = STATE(1308), - [sym_declaration_command] = STATE(1308), - [sym_unset_command] = STATE(1308), - [sym_command] = STATE(1308), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(267), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [119] = { + [sym_redirected_statement] = STATE(1321), + [sym_for_statement] = STATE(1321), + [sym_c_style_for_statement] = STATE(1321), + [sym_while_statement] = STATE(1321), + [sym_if_statement] = STATE(1321), + [sym_case_statement] = STATE(1321), + [sym_function_definition] = STATE(1321), + [sym_compound_statement] = STATE(1321), + [sym_subshell] = STATE(1321), + [sym_pipeline] = STATE(1321), + [sym_list] = STATE(1321), + [sym_negated_command] = STATE(1321), + [sym_test_command] = STATE(1321), + [sym_declaration_command] = STATE(1321), + [sym_unset_command] = STATE(1321), + [sym_command] = STATE(1321), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(234), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -16591,36 +16548,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, + [120] = { + [sym_redirected_statement] = STATE(1340), + [sym_for_statement] = STATE(1340), + [sym_c_style_for_statement] = STATE(1340), + [sym_while_statement] = STATE(1340), + [sym_if_statement] = STATE(1340), + [sym_case_statement] = STATE(1340), + [sym_function_definition] = STATE(1340), + [sym_compound_statement] = STATE(1340), + [sym_subshell] = STATE(1340), + [sym_pipeline] = STATE(1340), + [sym_list] = STATE(1340), + [sym_negated_command] = STATE(1340), + [sym_test_command] = STATE(1340), + [sym_declaration_command] = STATE(1340), + [sym_unset_command] = STATE(1340), + [sym_command] = STATE(1340), + [sym_command_name] = STATE(168), + [sym_variable_assignment] = STATE(228), + [sym_subscript] = STATE(2625), + [sym_file_redirect] = STATE(571), + [sym_concatenation] = STATE(564), + [sym_string] = STATE(246), + [sym_simple_expansion] = STATE(246), + [sym_string_expansion] = STATE(246), + [sym_expansion] = STATE(246), + [sym_command_substitution] = STATE(246), + [sym_process_substitution] = STATE(246), + [aux_sym_command_repeat1] = STATE(571), + [aux_sym__literal_repeat1] = STATE(473), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_LPAREN_LPAREN] = ACTIONS(11), + [anon_sym_while] = ACTIONS(13), + [anon_sym_if] = ACTIONS(15), + [anon_sym_case] = ACTIONS(17), + [anon_sym_function] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(29), + [anon_sym_declare] = ACTIONS(31), + [anon_sym_typeset] = ACTIONS(31), + [anon_sym_export] = ACTIONS(31), + [anon_sym_readonly] = ACTIONS(31), + [anon_sym_local] = ACTIONS(31), + [anon_sym_unset] = ACTIONS(33), + [anon_sym_unsetenv] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [sym__special_character] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [sym_ansii_c_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(59), + }, [121] = { - [sym_redirected_statement] = STATE(1330), - [sym_for_statement] = STATE(1330), - [sym_c_style_for_statement] = STATE(1330), - [sym_while_statement] = STATE(1330), - [sym_if_statement] = STATE(1330), - [sym_case_statement] = STATE(1330), - [sym_function_definition] = STATE(1330), - [sym_compound_statement] = STATE(1330), - [sym_subshell] = STATE(1330), - [sym_pipeline] = STATE(1330), - [sym_list] = STATE(1330), - [sym_negated_command] = STATE(1330), - [sym_test_command] = STATE(1330), - [sym_declaration_command] = STATE(1330), - [sym_unset_command] = STATE(1330), - [sym_command] = STATE(1330), - [sym_command_name] = STATE(185), - [sym_variable_assignment] = STATE(259), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(596), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(596), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1321), + [sym_for_statement] = STATE(1321), + [sym_c_style_for_statement] = STATE(1321), + [sym_while_statement] = STATE(1321), + [sym_if_statement] = STATE(1321), + [sym_case_statement] = STATE(1321), + [sym_function_definition] = STATE(1321), + [sym_compound_statement] = STATE(1321), + [sym_subshell] = STATE(1321), + [sym_pipeline] = STATE(1321), + [sym_list] = STATE(1321), + [sym_negated_command] = STATE(1321), + [sym_test_command] = STATE(1321), + [sym_declaration_command] = STATE(1321), + [sym_unset_command] = STATE(1321), + [sym_command] = STATE(1321), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(226), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -16630,16 +16658,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(85), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(259), - [anon_sym_typeset] = ACTIONS(259), - [anon_sym_export] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_local] = ACTIONS(259), - [anon_sym_unset] = ACTIONS(261), - [anon_sym_unsetenv] = ACTIONS(261), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -16663,35 +16691,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(111), }, [122] = { - [sym_redirected_statement] = STATE(1312), - [sym_for_statement] = STATE(1312), - [sym_c_style_for_statement] = STATE(1312), - [sym_while_statement] = STATE(1312), - [sym_if_statement] = STATE(1312), - [sym_case_statement] = STATE(1312), - [sym_function_definition] = STATE(1312), - [sym_compound_statement] = STATE(1312), - [sym_subshell] = STATE(1312), - [sym_pipeline] = STATE(1312), - [sym_list] = STATE(1312), - [sym_negated_command] = STATE(1312), - [sym_test_command] = STATE(1312), - [sym_declaration_command] = STATE(1312), - [sym_unset_command] = STATE(1312), - [sym_command] = STATE(1312), - [sym_command_name] = STATE(151), - [sym_variable_assignment] = STATE(230), - [sym_subscript] = STATE(2541), - [sym_file_redirect] = STATE(592), - [sym_concatenation] = STATE(560), - [sym_string] = STATE(241), - [sym_simple_expansion] = STATE(241), - [sym_string_expansion] = STATE(241), - [sym_expansion] = STATE(241), - [sym_command_substitution] = STATE(241), - [sym_process_substitution] = STATE(241), - [aux_sym_command_repeat1] = STATE(592), - [aux_sym__literal_repeat1] = STATE(301), + [sym_redirected_statement] = STATE(1341), + [sym_for_statement] = STATE(1341), + [sym_c_style_for_statement] = STATE(1341), + [sym_while_statement] = STATE(1341), + [sym_if_statement] = STATE(1341), + [sym_case_statement] = STATE(1341), + [sym_function_definition] = STATE(1341), + [sym_compound_statement] = STATE(1341), + [sym_subshell] = STATE(1341), + [sym_pipeline] = STATE(1341), + [sym_list] = STATE(1341), + [sym_negated_command] = STATE(1341), + [sym_test_command] = STATE(1341), + [sym_declaration_command] = STATE(1341), + [sym_unset_command] = STATE(1341), + [sym_command] = STATE(1341), + [sym_command_name] = STATE(168), + [sym_variable_assignment] = STATE(220), + [sym_subscript] = STATE(2625), + [sym_file_redirect] = STATE(571), + [sym_concatenation] = STATE(564), + [sym_string] = STATE(246), + [sym_simple_expansion] = STATE(246), + [sym_string_expansion] = STATE(246), + [sym_expansion] = STATE(246), + [sym_command_substitution] = STATE(246), + [sym_process_substitution] = STATE(246), + [aux_sym_command_repeat1] = STATE(571), + [aux_sym__literal_repeat1] = STATE(473), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_LPAREN_LPAREN] = ACTIONS(11), @@ -16734,106 +16762,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(59), }, [123] = { - [sym_redirected_statement] = STATE(1323), - [sym_for_statement] = STATE(1323), - [sym_c_style_for_statement] = STATE(1323), - [sym_while_statement] = STATE(1323), - [sym_if_statement] = STATE(1323), - [sym_case_statement] = STATE(1323), - [sym_function_definition] = STATE(1323), - [sym_compound_statement] = STATE(1323), - [sym_subshell] = STATE(1323), - [sym_pipeline] = STATE(1323), - [sym_list] = STATE(1323), - [sym_negated_command] = STATE(1323), - [sym_test_command] = STATE(1323), - [sym_declaration_command] = STATE(1323), - [sym_unset_command] = STATE(1323), - [sym_command] = STATE(1323), - [sym_command_name] = STATE(151), - [sym_variable_assignment] = STATE(232), - [sym_subscript] = STATE(2541), - [sym_file_redirect] = STATE(592), - [sym_concatenation] = STATE(560), - [sym_string] = STATE(241), - [sym_simple_expansion] = STATE(241), - [sym_string_expansion] = STATE(241), - [sym_expansion] = STATE(241), - [sym_command_substitution] = STATE(241), - [sym_process_substitution] = STATE(241), - [aux_sym_command_repeat1] = STATE(592), - [aux_sym__literal_repeat1] = STATE(301), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_LPAREN_LPAREN] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(39), - [sym__special_character] = ACTIONS(41), - [anon_sym_DQUOTE] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [sym_ansii_c_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(59), - }, - [124] = { - [sym_redirected_statement] = STATE(1308), - [sym_for_statement] = STATE(1308), - [sym_c_style_for_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_function_definition] = STATE(1308), - [sym_compound_statement] = STATE(1308), - [sym_subshell] = STATE(1308), - [sym_pipeline] = STATE(1308), - [sym_list] = STATE(1308), - [sym_negated_command] = STATE(1308), - [sym_test_command] = STATE(1308), - [sym_declaration_command] = STATE(1308), - [sym_unset_command] = STATE(1308), - [sym_command] = STATE(1308), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(226), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1346), + [sym_for_statement] = STATE(1346), + [sym_c_style_for_statement] = STATE(1346), + [sym_while_statement] = STATE(1346), + [sym_if_statement] = STATE(1346), + [sym_case_statement] = STATE(1346), + [sym_function_definition] = STATE(1346), + [sym_compound_statement] = STATE(1346), + [sym_subshell] = STATE(1346), + [sym_pipeline] = STATE(1346), + [sym_list] = STATE(1346), + [sym_negated_command] = STATE(1346), + [sym_test_command] = STATE(1346), + [sym_declaration_command] = STATE(1346), + [sym_unset_command] = STATE(1346), + [sym_command] = STATE(1346), + [sym_command_name] = STATE(175), + [sym_variable_assignment] = STATE(237), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(545), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(545), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -16843,16 +16800,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(91), - [anon_sym_typeset] = ACTIONS(91), - [anon_sym_export] = ACTIONS(91), - [anon_sym_readonly] = ACTIONS(91), - [anon_sym_local] = ACTIONS(91), - [anon_sym_unset] = ACTIONS(93), - [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(259), + [anon_sym_typeset] = ACTIONS(259), + [anon_sym_export] = ACTIONS(259), + [anon_sym_readonly] = ACTIONS(259), + [anon_sym_local] = ACTIONS(259), + [anon_sym_unset] = ACTIONS(261), + [anon_sym_unsetenv] = ACTIONS(261), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -16875,37 +16832,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), [sym_variable_name] = ACTIONS(111), }, - [125] = { - [sym_redirected_statement] = STATE(1315), - [sym_for_statement] = STATE(1315), - [sym_c_style_for_statement] = STATE(1315), - [sym_while_statement] = STATE(1315), - [sym_if_statement] = STATE(1315), - [sym_case_statement] = STATE(1315), - [sym_function_definition] = STATE(1315), - [sym_compound_statement] = STATE(1315), - [sym_subshell] = STATE(1315), - [sym_pipeline] = STATE(1315), - [sym_list] = STATE(1315), - [sym_negated_command] = STATE(1315), - [sym_test_command] = STATE(1315), - [sym_declaration_command] = STATE(1315), - [sym_unset_command] = STATE(1315), - [sym_command] = STATE(1315), - [sym_command_name] = STATE(157), - [sym_variable_assignment] = STATE(219), - [sym_subscript] = STATE(2601), - [sym_file_redirect] = STATE(581), - [sym_concatenation] = STATE(579), - [sym_string] = STATE(263), - [sym_simple_expansion] = STATE(263), - [sym_string_expansion] = STATE(263), - [sym_expansion] = STATE(263), - [sym_command_substitution] = STATE(263), - [sym_process_substitution] = STATE(263), - [aux_sym_command_repeat1] = STATE(581), - [aux_sym__literal_repeat1] = STATE(429), - [sym_word] = ACTIONS(199), + [124] = { + [sym_redirected_statement] = STATE(1328), + [sym_for_statement] = STATE(1328), + [sym_c_style_for_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_case_statement] = STATE(1328), + [sym_function_definition] = STATE(1328), + [sym_compound_statement] = STATE(1328), + [sym_subshell] = STATE(1328), + [sym_pipeline] = STATE(1328), + [sym_list] = STATE(1328), + [sym_negated_command] = STATE(1328), + [sym_test_command] = STATE(1328), + [sym_declaration_command] = STATE(1328), + [sym_unset_command] = STATE(1328), + [sym_command] = STATE(1328), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(232), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), [anon_sym_while] = ACTIONS(67), @@ -16914,16 +16871,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(81), [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_BANG] = ACTIONS(205), + [anon_sym_BANG] = ACTIONS(207), [anon_sym_LBRACK] = ACTIONS(87), [anon_sym_LBRACK_LBRACK] = ACTIONS(89), - [anon_sym_declare] = ACTIONS(207), - [anon_sym_typeset] = ACTIONS(207), - [anon_sym_export] = ACTIONS(207), - [anon_sym_readonly] = ACTIONS(207), - [anon_sym_local] = ACTIONS(207), - [anon_sym_unset] = ACTIONS(209), - [anon_sym_unsetenv] = ACTIONS(209), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_GT_GT] = ACTIONS(37), @@ -16932,50 +16889,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(37), [anon_sym_GT_AMP] = ACTIONS(37), [anon_sym_GT_PIPE] = ACTIONS(37), - [anon_sym_DOLLAR] = ACTIONS(211), - [sym__special_character] = ACTIONS(213), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [sym_ansii_c_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), [sym_comment] = ACTIONS(55), [sym_file_descriptor] = ACTIONS(57), - [sym_variable_name] = ACTIONS(227), + [sym_variable_name] = ACTIONS(229), + }, + [125] = { + [sym_redirected_statement] = STATE(1345), + [sym_for_statement] = STATE(1345), + [sym_c_style_for_statement] = STATE(1345), + [sym_while_statement] = STATE(1345), + [sym_if_statement] = STATE(1345), + [sym_case_statement] = STATE(1345), + [sym_function_definition] = STATE(1345), + [sym_compound_statement] = STATE(1345), + [sym_subshell] = STATE(1345), + [sym_pipeline] = STATE(1345), + [sym_list] = STATE(1345), + [sym_negated_command] = STATE(1345), + [sym_test_command] = STATE(1345), + [sym_declaration_command] = STATE(1345), + [sym_unset_command] = STATE(1345), + [sym_command] = STATE(1345), + [sym_command_name] = STATE(172), + [sym_variable_assignment] = STATE(233), + [sym_subscript] = STATE(2589), + [sym_file_redirect] = STATE(583), + [sym_concatenation] = STATE(581), + [sym_string] = STATE(235), + [sym_simple_expansion] = STATE(235), + [sym_string_expansion] = STATE(235), + [sym_expansion] = STATE(235), + [sym_command_substitution] = STATE(235), + [sym_process_substitution] = STATE(235), + [aux_sym_command_repeat1] = STATE(583), + [aux_sym__literal_repeat1] = STATE(374), + [sym_word] = ACTIONS(201), + [anon_sym_for] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(209), + [anon_sym_typeset] = ACTIONS(209), + [anon_sym_export] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(209), + [anon_sym_local] = ACTIONS(209), + [anon_sym_unset] = ACTIONS(211), + [anon_sym_unsetenv] = ACTIONS(211), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(213), + [sym__special_character] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym_raw_string] = ACTIONS(219), + [sym_ansii_c_string] = ACTIONS(219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LT_LPAREN] = ACTIONS(227), + [anon_sym_GT_LPAREN] = ACTIONS(227), + [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(57), + [sym_variable_name] = ACTIONS(229), }, [126] = { - [sym_redirected_statement] = STATE(1313), - [sym_for_statement] = STATE(1313), - [sym_c_style_for_statement] = STATE(1313), - [sym_while_statement] = STATE(1313), - [sym_if_statement] = STATE(1313), - [sym_case_statement] = STATE(1313), - [sym_function_definition] = STATE(1313), - [sym_compound_statement] = STATE(1313), - [sym_subshell] = STATE(1313), - [sym_pipeline] = STATE(1313), - [sym_list] = STATE(1313), - [sym_negated_command] = STATE(1313), - [sym_test_command] = STATE(1313), - [sym_declaration_command] = STATE(1313), - [sym_unset_command] = STATE(1313), - [sym_command] = STATE(1313), - [sym_command_name] = STATE(158), - [sym_variable_assignment] = STATE(225), - [sym_subscript] = STATE(2557), - [sym_file_redirect] = STATE(606), - [sym_concatenation] = STATE(611), - [sym_string] = STATE(260), - [sym_simple_expansion] = STATE(260), - [sym_string_expansion] = STATE(260), - [sym_expansion] = STATE(260), - [sym_command_substitution] = STATE(260), - [sym_process_substitution] = STATE(260), - [aux_sym_command_repeat1] = STATE(606), - [aux_sym__literal_repeat1] = STATE(417), + [sym_redirected_statement] = STATE(1327), + [sym_for_statement] = STATE(1327), + [sym_c_style_for_statement] = STATE(1327), + [sym_while_statement] = STATE(1327), + [sym_if_statement] = STATE(1327), + [sym_case_statement] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_compound_statement] = STATE(1327), + [sym_subshell] = STATE(1327), + [sym_pipeline] = STATE(1327), + [sym_list] = STATE(1327), + [sym_negated_command] = STATE(1327), + [sym_test_command] = STATE(1327), + [sym_declaration_command] = STATE(1327), + [sym_unset_command] = STATE(1327), + [sym_command] = STATE(1327), + [sym_command_name] = STATE(145), + [sym_variable_assignment] = STATE(221), + [sym_subscript] = STATE(2632), + [sym_file_redirect] = STATE(547), + [sym_concatenation] = STATE(548), + [sym_string] = STATE(242), + [sym_simple_expansion] = STATE(242), + [sym_string_expansion] = STATE(242), + [sym_expansion] = STATE(242), + [sym_command_substitution] = STATE(242), + [sym_process_substitution] = STATE(242), + [aux_sym_command_repeat1] = STATE(547), + [aux_sym__literal_repeat1] = STATE(418), [sym_word] = ACTIONS(61), [anon_sym_for] = ACTIONS(63), [anon_sym_LPAREN_LPAREN] = ACTIONS(65), @@ -17027,9 +17055,9 @@ static uint16_t ts_small_parse_table[] = { sym__simple_heredoc_body, ACTIONS(365), 1, sym__heredoc_body_beginning, - STATE(2360), 1, + STATE(2383), 1, sym_heredoc_body, - ACTIONS(283), 18, + ACTIONS(269), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -17093,9 +17121,9 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(389), 1, sym_variable_name, - STATE(424), 1, + STATE(369), 1, aux_sym__literal_repeat1, - STATE(2623), 1, + STATE(2579), 1, sym_subscript, ACTIONS(369), 2, sym_file_descriptor, @@ -17107,75 +17135,11 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(132), 3, + STATE(130), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(251), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(371), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(393), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - sym__special_character, - ACTIONS(397), 1, - anon_sym_DQUOTE, - ACTIONS(399), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(401), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(407), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(409), 1, - sym_variable_name, - STATE(428), 1, - aux_sym__literal_repeat1, - STATE(2619), 1, - sym_subscript, - ACTIONS(369), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(405), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(391), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(131), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(242), 6, + STATE(244), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -17202,36 +17166,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [141] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 1, + anon_sym_DOLLAR, + ACTIONS(399), 1, + sym__special_character, + ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(403), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(405), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(411), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(413), 1, + sym_variable_name, + STATE(425), 1, + aux_sym__literal_repeat1, + STATE(2598), 1, + sym_subscript, + ACTIONS(393), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(409), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(391), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(131), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(270), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(395), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, [222] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(418), 1, + ACTIONS(422), 1, anon_sym_DOLLAR, - ACTIONS(421), 1, + ACTIONS(425), 1, sym__special_character, - ACTIONS(424), 1, + ACTIONS(428), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(430), 1, + ACTIONS(434), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(433), 1, + ACTIONS(437), 1, anon_sym_BQUOTE, - ACTIONS(439), 1, + ACTIONS(443), 1, aux_sym__simple_variable_name_token1, - ACTIONS(442), 1, + ACTIONS(446), 1, sym_variable_name, - STATE(428), 1, + STATE(369), 1, aux_sym__literal_repeat1, - STATE(2619), 1, + STATE(2579), 1, sym_subscript, - ACTIONS(414), 2, + ACTIONS(418), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(436), 2, + ACTIONS(440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(411), 3, + ACTIONS(415), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -17239,14 +17267,14 @@ static uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(242), 6, + STATE(244), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(416), 19, + ACTIONS(420), 19, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -17269,51 +17297,51 @@ static uint16_t ts_small_parse_table[] = { [303] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 1, - anon_sym_DOLLAR, - ACTIONS(395), 1, - sym__special_character, ACTIONS(397), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR, ACTIONS(399), 1, - anon_sym_DOLLAR_LBRACE, + sym__special_character, ACTIONS(401), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, ACTIONS(403), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(405), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(409), 1, + ACTIONS(413), 1, sym_variable_name, ACTIONS(449), 1, aux_sym__simple_variable_name_token1, - STATE(428), 1, + STATE(425), 1, aux_sym__literal_repeat1, - STATE(2619), 1, + STATE(2598), 1, sym_subscript, - ACTIONS(405), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(445), 2, + ACTIONS(369), 2, sym_file_descriptor, anon_sym_LF, + ACTIONS(409), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, ACTIONS(391), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(130), 3, + STATE(136), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(242), 6, + STATE(270), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(447), 19, + ACTIONS(371), 19, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -17349,35 +17377,35 @@ static uint16_t ts_small_parse_table[] = { sym_variable_name, ACTIONS(451), 1, aux_sym__simple_variable_name_token1, - STATE(424), 1, + STATE(369), 1, aux_sym__literal_repeat1, - STATE(2623), 1, + STATE(2579), 1, sym_subscript, ACTIONS(385), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(445), 2, + ACTIONS(393), 2, sym_file_descriptor, anon_sym_LF, ACTIONS(367), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(135), 3, + STATE(128), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(251), 6, + STATE(244), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(447), 19, + ACTIONS(395), 19, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -17397,30 +17425,30 @@ static uint16_t ts_small_parse_table[] = { [465] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 1, + ACTIONS(456), 1, anon_sym_DOLLAR, - ACTIONS(457), 1, - sym__special_character, ACTIONS(459), 1, + sym__special_character, + ACTIONS(462), 1, anon_sym_DQUOTE, - ACTIONS(461), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(465), 1, - anon_sym_BQUOTE, - ACTIONS(469), 1, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(468), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(471), 1, + anon_sym_BQUOTE, + ACTIONS(477), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(480), 1, sym_variable_name, - STATE(319), 1, + STATE(472), 1, aux_sym__literal_repeat1, STATE(2612), 1, sym_subscript, - ACTIONS(467), 2, + ACTIONS(474), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(369), 3, + ACTIONS(418), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, @@ -17428,11 +17456,75 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(136), 3, + STATE(133), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(248), 6, + STATE(256), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(420), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [546] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(485), 1, + anon_sym_DOLLAR, + ACTIONS(487), 1, + sym__special_character, + ACTIONS(489), 1, + anon_sym_DQUOTE, + ACTIONS(491), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(493), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(495), 1, + anon_sym_BQUOTE, + ACTIONS(499), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(501), 1, + sym_variable_name, + STATE(472), 1, + aux_sym__literal_repeat1, + STATE(2612), 1, + sym_subscript, + ACTIONS(497), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(369), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(483), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(133), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(256), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -17458,37 +17550,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [546] = 17, + [627] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(476), 1, - anon_sym_DOLLAR, - ACTIONS(479), 1, - sym__special_character, - ACTIONS(482), 1, - anon_sym_DQUOTE, ACTIONS(485), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(488), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + ACTIONS(487), 1, + sym__special_character, + ACTIONS(489), 1, + anon_sym_DQUOTE, ACTIONS(491), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(493), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(495), 1, anon_sym_BQUOTE, - ACTIONS(497), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(500), 1, + ACTIONS(501), 1, sym_variable_name, - STATE(319), 1, + ACTIONS(503), 1, + aux_sym__simple_variable_name_token1, + STATE(472), 1, aux_sym__literal_repeat1, STATE(2612), 1, sym_subscript, - ACTIONS(494), 2, + ACTIONS(497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(414), 3, + ACTIONS(393), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(473), 3, + ACTIONS(483), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -17496,14 +17588,14 @@ static uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(248), 6, + STATE(256), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(416), 18, + ACTIONS(395), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -17522,118 +17614,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [627] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - anon_sym_DOLLAR, - ACTIONS(509), 1, - sym__special_character, - ACTIONS(512), 1, - anon_sym_DQUOTE, - ACTIONS(515), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(518), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(521), 1, - anon_sym_BQUOTE, - ACTIONS(527), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(530), 1, - sym_variable_name, - STATE(424), 1, - aux_sym__literal_repeat1, - STATE(2623), 1, - sym_subscript, - ACTIONS(414), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(503), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(135), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(251), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(416), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, [708] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 1, + ACTIONS(508), 1, anon_sym_DOLLAR, - ACTIONS(457), 1, + ACTIONS(511), 1, sym__special_character, - ACTIONS(459), 1, + ACTIONS(514), 1, anon_sym_DQUOTE, - ACTIONS(461), 1, + ACTIONS(517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(523), 1, anon_sym_BQUOTE, - ACTIONS(471), 1, - sym_variable_name, - ACTIONS(533), 1, + ACTIONS(529), 1, aux_sym__simple_variable_name_token1, - STATE(319), 1, + ACTIONS(532), 1, + sym_variable_name, + STATE(425), 1, aux_sym__literal_repeat1, - STATE(2612), 1, + STATE(2598), 1, sym_subscript, - ACTIONS(467), 2, + ACTIONS(418), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(526), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(445), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(453), 3, + ACTIONS(505), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(134), 3, + STATE(136), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(248), 6, + STATE(270), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(447), 18, + ACTIONS(420), 19, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -17657,7 +17685,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(543), 1, sym_raw_string, - STATE(420), 1, + STATE(361), 1, sym_string, ACTIONS(537), 2, sym_file_descriptor, @@ -17704,69 +17732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [851] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(375), 1, - sym__special_character, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(389), 1, - sym_variable_name, - ACTIONS(451), 1, - aux_sym__simple_variable_name_token1, - STATE(424), 1, - aux_sym__literal_repeat1, - STATE(2623), 1, - sym_subscript, - ACTIONS(385), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(445), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(367), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(135), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(251), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(447), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [929] = 8, + [851] = 8, ACTIONS(55), 1, sym_comment, ACTIONS(363), 1, @@ -17777,7 +17743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_esac, ACTIONS(553), 1, anon_sym_SEMI_SEMI, - STATE(2349), 1, + STATE(2378), 1, sym_heredoc_body, ACTIONS(549), 18, sym_file_descriptor, @@ -17820,109 +17786,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [991] = 8, - ACTIONS(55), 1, - sym_comment, - ACTIONS(363), 1, - sym__simple_heredoc_body, - ACTIONS(365), 1, - sym__heredoc_body_beginning, - ACTIONS(555), 1, - anon_sym_esac, - ACTIONS(557), 1, - anon_sym_SEMI_SEMI, - STATE(2330), 1, - sym_heredoc_body, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [1053] = 16, + [913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(375), 1, - sym__special_character, - ACTIONS(377), 1, + ACTIONS(557), 1, anon_sym_DQUOTE, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(389), 1, - sym_variable_name, ACTIONS(559), 1, - aux_sym__simple_variable_name_token1, - STATE(424), 1, - aux_sym__literal_repeat1, - STATE(2623), 1, - sym_subscript, - ACTIONS(369), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(385), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(367), 3, sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(138), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(251), 6, + STATE(468), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(371), 19, + ACTIONS(537), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(555), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(561), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 28, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -17934,27 +17831,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_AMP, - [1131] = 8, + [975] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, - anon_sym_DQUOTE, ACTIONS(565), 1, + anon_sym_DQUOTE, + ACTIONS(567), 1, sym_raw_string, - STATE(369), 1, + STATE(308), 1, sym_string, ACTIONS(537), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(561), 5, + ACTIONS(563), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(567), 5, + ACTIONS(569), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -17990,40 +17894,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [1193] = 8, + [1037] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(571), 1, - anon_sym_DQUOTE, - ACTIONS(573), 1, - sym_raw_string, - STATE(351), 1, - sym_string, - ACTIONS(537), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(569), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(397), 1, anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(575), 5, + ACTIONS(399), 1, + sym__special_character, + ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(403), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(405), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(413), 1, + sym_variable_name, + ACTIONS(449), 1, aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 28, + STATE(425), 1, + aux_sym__literal_repeat1, + STATE(2598), 1, + sym_subscript, + ACTIONS(369), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(409), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(391), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(136), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(270), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(371), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -18035,23 +17954,184 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [1115] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 1, + anon_sym_DOLLAR, + ACTIONS(399), 1, sym__special_character, + ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(403), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(405), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(413), 1, + sym_variable_name, + ACTIONS(571), 1, + aux_sym__simple_variable_name_token1, + STATE(425), 1, + aux_sym__literal_repeat1, + STATE(2598), 1, + sym_subscript, + ACTIONS(393), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(409), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(391), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(141), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(270), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(395), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [1193] = 8, + ACTIONS(55), 1, + sym_comment, + ACTIONS(363), 1, + sym__simple_heredoc_body, + ACTIONS(365), 1, + sym__heredoc_body_beginning, + ACTIONS(573), 1, + anon_sym_esac, + ACTIONS(575), 1, + anon_sym_SEMI_SEMI, + STATE(2363), 1, + sym_heredoc_body, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, sym_word, - anon_sym_AMP, - [1255] = 16, + [1255] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(363), 1, + sym__simple_heredoc_body, + ACTIONS(365), 1, + sym__heredoc_body_beginning, + ACTIONS(575), 1, + anon_sym_SEMI_SEMI, + STATE(2397), 1, + sym_heredoc_body, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [1314] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(95), 1, anon_sym_DOLLAR, - ACTIONS(41), 1, + ACTIONS(97), 1, sym__special_character, - ACTIONS(571), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, ACTIONS(585), 1, anon_sym_DOLLAR_LBRACE, @@ -18059,12 +18139,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(589), 1, anon_sym_BQUOTE, - STATE(149), 1, + STATE(156), 1, aux_sym_command_repeat2, - STATE(359), 1, + STATE(447), 1, aux_sym__literal_repeat1, - STATE(661), 1, + STATE(536), 1, sym_concatenation, + ACTIONS(579), 2, + sym_file_descriptor, + anon_sym_LF, ACTIONS(583), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, @@ -18072,23 +18155,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(577), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(579), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(261), 6, + STATE(273), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(581), 18, + ACTIONS(581), 19, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -18105,14 +18185,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [1332] = 8, + [1391] = 6, + ACTIONS(55), 1, + sym_comment, + ACTIONS(363), 1, + sym__simple_heredoc_body, + ACTIONS(365), 1, + sym__heredoc_body_beginning, + STATE(2396), 1, + sym_heredoc_body, + ACTIONS(269), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(131), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [1448] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(595), 1, anon_sym_DQUOTE, ACTIONS(597), 1, sym_raw_string, - STATE(554), 1, + STATE(560), 1, sym_string, ACTIONS(537), 3, sym_file_descriptor, @@ -18158,66 +18289,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [1393] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(363), 1, - sym__simple_heredoc_body, - ACTIONS(365), 1, - sym__heredoc_body_beginning, - ACTIONS(557), 1, - anon_sym_RPAREN, - STATE(2331), 1, - sym_heredoc_body, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [1452] = 16, + [1509] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_DOLLAR, ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(215), 1, sym__special_character, - ACTIONS(563), 1, + ACTIONS(565), 1, anon_sym_DQUOTE, ACTIONS(609), 1, anon_sym_DOLLAR_LBRACE, @@ -18225,11 +18304,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(613), 1, anon_sym_BQUOTE, - STATE(168), 1, + STATE(158), 1, aux_sym_command_repeat2, - STATE(415), 1, + STATE(349), 1, aux_sym__literal_repeat1, - STATE(604), 1, + STATE(607), 1, sym_concatenation, ACTIONS(603), 2, sym_file_descriptor, @@ -18244,7 +18323,7 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(254), 6, + STATE(276), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -18271,756 +18350,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [1529] = 6, + [1586] = 7, ACTIONS(55), 1, sym_comment, ACTIONS(363), 1, sym__simple_heredoc_body, ACTIONS(365), 1, sym__heredoc_body_beginning, - STATE(2391), 1, - sym_heredoc_body, - ACTIONS(283), 19, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(131), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [1586] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, - sym__special_character, - ACTIONS(571), 1, - anon_sym_DQUOTE, - ACTIONS(585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(589), 1, - anon_sym_BQUOTE, - STATE(153), 1, - aux_sym_command_repeat2, - STATE(359), 1, - aux_sym__literal_repeat1, - STATE(661), 1, - sym_concatenation, - ACTIONS(583), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(579), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(617), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(261), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(619), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1663] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(623), 1, - sym_raw_string, - STATE(332), 1, - sym_string, - ACTIONS(537), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(621), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(625), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 26, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [1724] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, - sym__special_character, - ACTIONS(571), 1, - anon_sym_DQUOTE, - ACTIONS(585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(589), 1, - anon_sym_BQUOTE, - STATE(166), 1, - aux_sym_command_repeat2, - STATE(359), 1, - aux_sym__literal_repeat1, - STATE(661), 1, - sym_concatenation, - ACTIONS(583), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(579), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(627), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(261), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(629), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1801] = 7, - ACTIONS(55), 1, - sym_comment, ACTIONS(553), 1, - ts_builtin_sym_end, - ACTIONS(631), 1, - sym__simple_heredoc_body, - ACTIONS(633), 1, - sym__heredoc_body_beginning, - STATE(2355), 1, - sym_heredoc_body, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [1860] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, - anon_sym_DOLLAR, - ACTIONS(648), 1, - sym__special_character, - ACTIONS(651), 1, - anon_sym_DQUOTE, - ACTIONS(654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(657), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(660), 1, - anon_sym_BQUOTE, - STATE(153), 1, - aux_sym_command_repeat2, - STATE(359), 1, - aux_sym__literal_repeat1, - STATE(661), 1, - sym_concatenation, - ACTIONS(642), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(663), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(635), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(637), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(261), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(640), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1937] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(670), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(674), 1, - anon_sym_BQUOTE, - STATE(170), 1, - aux_sym_command_repeat2, - STATE(445), 1, - aux_sym__literal_repeat1, - STATE(559), 1, - sym_concatenation, - ACTIONS(603), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(676), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(666), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(605), 19, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2014] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(557), 1, - ts_builtin_sym_end, - ACTIONS(631), 1, - sym__simple_heredoc_body, - ACTIONS(633), 1, - sym__heredoc_body_beginning, - STATE(2336), 1, - sym_heredoc_body, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [2073] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(670), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(674), 1, - anon_sym_BQUOTE, - STATE(167), 1, - aux_sym_command_repeat2, - STATE(445), 1, - aux_sym__literal_repeat1, - STATE(559), 1, - sym_concatenation, - ACTIONS(577), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(676), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(666), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(581), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2150] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_DOLLAR, - ACTIONS(213), 1, - sym__special_character, - ACTIONS(563), 1, - anon_sym_DQUOTE, - ACTIONS(609), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(611), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(613), 1, - anon_sym_BQUOTE, - STATE(147), 1, - aux_sym_command_repeat2, - STATE(415), 1, - aux_sym__literal_repeat1, - STATE(604), 1, - sym_concatenation, - ACTIONS(607), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(615), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(627), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(601), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(254), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(629), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2227] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(670), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(674), 1, - anon_sym_BQUOTE, - STATE(154), 1, - aux_sym_command_repeat2, - STATE(445), 1, - aux_sym__literal_repeat1, - STATE(559), 1, - sym_concatenation, - ACTIONS(627), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(676), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(666), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(629), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2304] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(680), 1, - anon_sym_DQUOTE, - ACTIONS(682), 1, - sym_raw_string, - STATE(655), 1, - sym_string, - ACTIONS(537), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(678), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(684), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2365] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 1, - anon_sym_DQUOTE, - ACTIONS(688), 1, - sym_raw_string, - STATE(386), 1, - sym_string, - ACTIONS(537), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(686), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(690), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 27, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2426] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(363), 1, - sym__simple_heredoc_body, - ACTIONS(365), 1, - sym__heredoc_body_beginning, - ACTIONS(557), 1, - anon_sym_SEMI_SEMI, STATE(2374), 1, sym_heredoc_body, ACTIONS(549), 18, @@ -19064,10 +18402,1324 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [2485] = 3, + [1645] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(589), 1, + anon_sym_BQUOTE, + STATE(161), 1, + aux_sym_command_repeat2, + STATE(447), 1, + aux_sym__literal_repeat1, + STATE(536), 1, + sym_concatenation, + ACTIONS(583), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(591), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(603), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(577), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(273), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(605), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1722] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(619), 1, + sym_raw_string, + STATE(475), 1, + sym_string, + ACTIONS(537), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(617), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(621), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [1783] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + anon_sym_DQUOTE, + ACTIONS(627), 1, + sym_raw_string, + STATE(566), 1, + sym_string, + ACTIONS(537), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(623), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(629), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 26, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [1844] = 7, ACTIONS(55), 1, sym_comment, - ACTIONS(283), 18, + ACTIONS(363), 1, + sym__simple_heredoc_body, + ACTIONS(365), 1, + sym__heredoc_body_beginning, + ACTIONS(575), 1, + anon_sym_RPAREN, + STATE(2345), 1, + sym_heredoc_body, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [1903] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(633), 1, + anon_sym_DQUOTE, + ACTIONS(635), 1, + sym_raw_string, + STATE(511), 1, + sym_string, + ACTIONS(537), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(631), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(637), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [1964] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(363), 1, + sym__simple_heredoc_body, + ACTIONS(365), 1, + sym__heredoc_body_beginning, + ACTIONS(553), 1, + anon_sym_SEMI_SEMI, + STATE(2385), 1, + sym_heredoc_body, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [2023] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(589), 1, + anon_sym_BQUOTE, + STATE(161), 1, + aux_sym_command_repeat2, + STATE(447), 1, + aux_sym__literal_repeat1, + STATE(536), 1, + sym_concatenation, + ACTIONS(583), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(591), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(639), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(577), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(273), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(641), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2100] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(377), 1, + anon_sym_DQUOTE, + ACTIONS(645), 1, + sym_raw_string, + STATE(278), 1, + sym_string, + ACTIONS(537), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(643), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(647), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 27, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [2161] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_DOLLAR, + ACTIONS(662), 1, + sym__special_character, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(668), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(671), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(674), 1, + anon_sym_BQUOTE, + STATE(158), 1, + aux_sym_command_repeat2, + STATE(349), 1, + aux_sym__literal_repeat1, + STATE(607), 1, + sym_concatenation, + ACTIONS(652), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(656), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(677), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(649), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(276), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(654), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2238] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(688), 1, + anon_sym_BQUOTE, + STATE(165), 1, + aux_sym_command_repeat2, + STATE(460), 1, + aux_sym__literal_repeat1, + STATE(577), 1, + sym_concatenation, + ACTIONS(682), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(690), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(639), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(680), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(266), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(641), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2315] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(553), 1, + ts_builtin_sym_end, + ACTIONS(692), 1, + sym__simple_heredoc_body, + ACTIONS(694), 1, + sym__heredoc_body_beginning, + STATE(2368), 1, + sym_heredoc_body, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [2374] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_DOLLAR, + ACTIONS(705), 1, + sym__special_character, + ACTIONS(708), 1, + anon_sym_DQUOTE, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(714), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(717), 1, + anon_sym_BQUOTE, + STATE(161), 1, + aux_sym_command_repeat2, + STATE(447), 1, + aux_sym__literal_repeat1, + STATE(536), 1, + sym_concatenation, + ACTIONS(652), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(699), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(720), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(696), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(273), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(654), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2451] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(541), 1, + anon_sym_DQUOTE, + ACTIONS(585), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(587), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(589), 1, + anon_sym_BQUOTE, + STATE(150), 1, + aux_sym_command_repeat2, + STATE(447), 1, + aux_sym__literal_repeat1, + STATE(536), 1, + sym_concatenation, + ACTIONS(583), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(591), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(723), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(577), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(273), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(725), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2528] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(215), 1, + sym__special_character, + ACTIONS(565), 1, + anon_sym_DQUOTE, + ACTIONS(609), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(611), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(613), 1, + anon_sym_BQUOTE, + STATE(148), 1, + aux_sym_command_repeat2, + STATE(349), 1, + aux_sym__literal_repeat1, + STATE(607), 1, + sym_concatenation, + ACTIONS(607), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(615), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(723), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(601), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(276), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(725), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2605] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(489), 1, + anon_sym_DQUOTE, + ACTIONS(729), 1, + sym_raw_string, + STATE(359), 1, + sym_string, + ACTIONS(537), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(727), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(731), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 26, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [2666] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(739), 1, + anon_sym_DOLLAR, + ACTIONS(742), 1, + sym__special_character, + ACTIONS(745), 1, + anon_sym_DQUOTE, + ACTIONS(748), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(751), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(754), 1, + anon_sym_BQUOTE, + STATE(165), 1, + aux_sym_command_repeat2, + STATE(460), 1, + aux_sym__literal_repeat1, + STATE(577), 1, + sym_concatenation, + ACTIONS(736), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(757), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(652), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(733), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(266), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(654), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2743] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(575), 1, + ts_builtin_sym_end, + ACTIONS(692), 1, + sym__simple_heredoc_body, + ACTIONS(694), 1, + sym__heredoc_body_beginning, + STATE(2364), 1, + sym_heredoc_body, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [2802] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(688), 1, + anon_sym_BQUOTE, + STATE(165), 1, + aux_sym_command_repeat2, + STATE(460), 1, + aux_sym__literal_repeat1, + STATE(577), 1, + sym_concatenation, + ACTIONS(682), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(690), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(603), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(680), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(266), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(605), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2879] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(688), 1, + anon_sym_BQUOTE, + STATE(159), 1, + aux_sym_command_repeat2, + STATE(460), 1, + aux_sym__literal_repeat1, + STATE(577), 1, + sym_concatenation, + ACTIONS(682), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(690), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(579), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(680), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(266), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(581), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2956] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(762), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(760), 25, + anon_sym_for, + anon_sym_while, + anon_sym_done, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [3007] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(215), 1, + sym__special_character, + ACTIONS(565), 1, + anon_sym_DQUOTE, + ACTIONS(609), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(611), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(613), 1, + anon_sym_BQUOTE, + STATE(158), 1, + aux_sym_command_repeat2, + STATE(349), 1, + aux_sym__literal_repeat1, + STATE(607), 1, + sym_concatenation, + ACTIONS(607), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(615), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(639), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(601), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(276), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(641), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3084] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(557), 1, + anon_sym_DQUOTE, + ACTIONS(684), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(686), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(688), 1, + anon_sym_BQUOTE, + STATE(167), 1, + aux_sym_command_repeat2, + STATE(460), 1, + aux_sym__literal_repeat1, + STATE(577), 1, + sym_concatenation, + ACTIONS(682), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(690), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(680), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(723), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(266), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(725), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3161] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(215), 1, + sym__special_character, + ACTIONS(565), 1, + anon_sym_DQUOTE, + ACTIONS(609), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(611), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(613), 1, + anon_sym_BQUOTE, + STATE(170), 1, + aux_sym_command_repeat2, + STATE(349), 1, + aux_sym__literal_repeat1, + STATE(607), 1, + sym_concatenation, + ACTIONS(579), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(607), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(615), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(601), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(276), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(581), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3238] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(269), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -19112,221 +19764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [2536] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(694), 1, - sym_raw_string, - STATE(282), 1, - sym_string, - ACTIONS(537), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(692), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(696), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2597] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(363), 1, - sym__simple_heredoc_body, - ACTIONS(365), 1, - sym__heredoc_body_beginning, - ACTIONS(553), 1, - anon_sym_SEMI_SEMI, - STATE(2366), 1, - sym_heredoc_body, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [2656] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(700), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(698), 25, - anon_sym_for, - anon_sym_while, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [2707] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, - sym__special_character, - ACTIONS(571), 1, - anon_sym_DQUOTE, - ACTIONS(585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(589), 1, - anon_sym_BQUOTE, - STATE(153), 1, - aux_sym_command_repeat2, - STATE(359), 1, - aux_sym__literal_repeat1, - STATE(661), 1, - sym_concatenation, - ACTIONS(583), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(579), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(603), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(261), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(605), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2784] = 16, + [3289] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -19335,103 +19773,39 @@ static uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(670), 1, + ACTIONS(585), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, + ACTIONS(587), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(674), 1, - anon_sym_BQUOTE, - STATE(170), 1, + STATE(161), 1, aux_sym_command_repeat2, - STATE(445), 1, + STATE(447), 1, aux_sym__literal_repeat1, - STATE(559), 1, + STATE(536), 1, sym_concatenation, - ACTIONS(617), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, + ACTIONS(583), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(676), 2, + ACTIONS(591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(666), 3, + ACTIONS(639), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(577), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(238), 6, + STATE(273), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(619), 19, + ACTIONS(641), 19, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2861] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(708), 1, - anon_sym_DOLLAR, - ACTIONS(711), 1, - sym__special_character, - ACTIONS(714), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(720), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(723), 1, - anon_sym_BQUOTE, - STATE(168), 1, - aux_sym_command_repeat2, - STATE(415), 1, - aux_sym__literal_repeat1, - STATE(604), 1, - sym_concatenation, - ACTIONS(635), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(705), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(726), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(702), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(254), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(640), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -19447,42 +19821,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BQUOTE, anon_sym_AMP, - [2938] = 16, + [3363] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(95), 1, anon_sym_DOLLAR, - ACTIONS(213), 1, + ACTIONS(97), 1, sym__special_character, - ACTIONS(563), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(609), 1, + ACTIONS(585), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(611), 1, + ACTIONS(587), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(613), 1, - anon_sym_BQUOTE, - STATE(173), 1, + STATE(174), 1, aux_sym_command_repeat2, - STATE(415), 1, + STATE(447), 1, aux_sym__literal_repeat1, - STATE(604), 1, + STATE(536), 1, sym_concatenation, - ACTIONS(577), 2, + ACTIONS(579), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(607), 2, + ACTIONS(583), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(615), 2, + ACTIONS(591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(601), 3, + ACTIONS(577), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(254), 6, + STATE(273), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -19491,7 +19864,6 @@ static uint16_t ts_small_parse_table[] = { sym_process_substitution, ACTIONS(581), 19, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -19508,52 +19880,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BQUOTE, anon_sym_AMP, - [3015] = 16, + [3437] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(735), 1, + ACTIONS(95), 1, anon_sym_DOLLAR, - ACTIONS(738), 1, + ACTIONS(97), 1, sym__special_character, - ACTIONS(741), 1, + ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(744), 1, + ACTIONS(585), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(747), 1, + ACTIONS(587), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(750), 1, - anon_sym_BQUOTE, - STATE(170), 1, + STATE(191), 1, aux_sym_command_repeat2, - STATE(445), 1, + STATE(447), 1, aux_sym__literal_repeat1, - STATE(559), 1, + STATE(536), 1, sym_concatenation, - ACTIONS(635), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(732), 2, + ACTIONS(583), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(753), 2, + ACTIONS(591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(729), 3, + ACTIONS(723), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(577), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(238), 6, + STATE(273), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(640), 19, + ACTIONS(725), 19, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -19569,80 +19939,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [3092] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(363), 1, - sym__simple_heredoc_body, - ACTIONS(365), 1, - sym__heredoc_body_beginning, - ACTIONS(553), 1, - anon_sym_RPAREN, - STATE(2321), 1, - sym_heredoc_body, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [3151] = 8, + anon_sym_AMP, + [3511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(766), 1, anon_sym_DQUOTE, - ACTIONS(760), 1, + ACTIONS(768), 1, sym_raw_string, - STATE(537), 1, + STATE(631), 1, sym_string, - ACTIONS(537), 4, + ACTIONS(537), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(756), 5, + ACTIONS(764), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(762), 5, + ACTIONS(770), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -19675,107 +19993,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [3212] = 16, + [3571] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(211), 1, + ACTIONS(779), 1, anon_sym_DOLLAR, - ACTIONS(213), 1, + ACTIONS(782), 1, sym__special_character, - ACTIONS(563), 1, + ACTIONS(785), 1, anon_sym_DQUOTE, - ACTIONS(609), 1, + ACTIONS(788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(611), 1, + ACTIONS(791), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(613), 1, + ACTIONS(794), 1, anon_sym_BQUOTE, - STATE(168), 1, - aux_sym_command_repeat2, - STATE(415), 1, - aux_sym__literal_repeat1, - STATE(604), 1, - sym_concatenation, - ACTIONS(607), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(615), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(617), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(601), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(254), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(619), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3289] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(771), 1, - anon_sym_DOLLAR, - ACTIONS(774), 1, - sym__special_character, - ACTIONS(777), 1, - anon_sym_DQUOTE, - ACTIONS(780), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(786), 1, - anon_sym_BQUOTE, - ACTIONS(792), 1, + ACTIONS(800), 1, aux_sym__simple_variable_name_token1, - STATE(590), 1, + STATE(592), 1, aux_sym__literal_repeat1, - ACTIONS(767), 2, + ACTIONS(775), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(789), 2, + ACTIONS(797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(174), 2, + STATE(178), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(764), 3, + ACTIONS(772), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(427), 6, + STATE(368), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(769), 19, + ACTIONS(777), 19, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -19795,7 +20052,479 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [3363] = 7, + [3645] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(809), 1, + anon_sym_DOLLAR, + ACTIONS(811), 1, + sym__special_character, + ACTIONS(813), 1, + anon_sym_DQUOTE, + ACTIONS(815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(819), 1, + anon_sym_BQUOTE, + ACTIONS(823), 1, + aux_sym__simple_variable_name_token1, + STATE(592), 1, + aux_sym__literal_repeat1, + ACTIONS(805), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(821), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(181), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(803), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(368), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(807), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3719] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 1, + anon_sym_DOLLAR, + ACTIONS(831), 1, + sym__special_character, + ACTIONS(834), 1, + anon_sym_DQUOTE, + ACTIONS(837), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(840), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(843), 1, + anon_sym_BQUOTE, + ACTIONS(849), 1, + aux_sym__simple_variable_name_token1, + STATE(576), 1, + aux_sym__literal_repeat1, + ACTIONS(846), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(180), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(775), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(825), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(471), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(777), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3793] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(809), 1, + anon_sym_DOLLAR, + ACTIONS(811), 1, + sym__special_character, + ACTIONS(813), 1, + anon_sym_DQUOTE, + ACTIONS(815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(819), 1, + anon_sym_BQUOTE, + ACTIONS(856), 1, + aux_sym__simple_variable_name_token1, + STATE(592), 1, + aux_sym__literal_repeat1, + ACTIONS(821), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(852), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(178), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(803), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(368), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(854), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3867] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_DOLLAR, + ACTIONS(862), 1, + sym__special_character, + ACTIONS(864), 1, + anon_sym_DQUOTE, + ACTIONS(866), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(868), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(870), 1, + anon_sym_BQUOTE, + ACTIONS(874), 1, + aux_sym__simple_variable_name_token1, + STATE(543), 1, + aux_sym__literal_repeat1, + ACTIONS(852), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(183), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(858), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(426), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(854), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3941] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(879), 1, + anon_sym_DOLLAR, + ACTIONS(882), 1, + sym__special_character, + ACTIONS(885), 1, + anon_sym_DQUOTE, + ACTIONS(888), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(891), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(894), 1, + anon_sym_BQUOTE, + ACTIONS(900), 1, + aux_sym__simple_variable_name_token1, + STATE(543), 1, + aux_sym__literal_repeat1, + ACTIONS(775), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(897), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(183), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(876), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(426), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(777), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4015] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(766), 1, + anon_sym_DQUOTE, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + sym__special_character, + ACTIONS(909), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(911), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(913), 1, + anon_sym_BQUOTE, + ACTIONS(917), 1, + aux_sym__simple_variable_name_token1, + STATE(576), 1, + aux_sym__literal_repeat1, + ACTIONS(915), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(185), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(805), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(471), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(807), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4089] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(766), 1, + anon_sym_DQUOTE, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + sym__special_character, + ACTIONS(909), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(911), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(913), 1, + anon_sym_BQUOTE, + ACTIONS(919), 1, + aux_sym__simple_variable_name_token1, + STATE(576), 1, + aux_sym__literal_repeat1, + ACTIONS(915), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(180), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(852), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(903), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(471), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(854), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4163] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_DOLLAR, + ACTIONS(862), 1, + sym__special_character, + ACTIONS(864), 1, + anon_sym_DQUOTE, + ACTIONS(866), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(868), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(870), 1, + anon_sym_BQUOTE, + ACTIONS(921), 1, + aux_sym__simple_variable_name_token1, + STATE(543), 1, + aux_sym__literal_repeat1, + ACTIONS(805), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(182), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(858), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(426), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(807), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4237] = 7, ACTIONS(55), 1, sym_comment, ACTIONS(363), 1, @@ -19804,7 +20533,7 @@ static uint16_t ts_small_parse_table[] = { sym__heredoc_body_beginning, ACTIONS(553), 1, anon_sym_BQUOTE, - STATE(2338), 1, + STATE(2344), 1, sym_heredoc_body, ACTIONS(549), 17, sym_file_descriptor, @@ -19846,46 +20575,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [3421] = 15, + [4295] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 1, - anon_sym_DOLLAR, - ACTIONS(801), 1, - sym__special_character, - ACTIONS(804), 1, + ACTIONS(864), 1, anon_sym_DQUOTE, - ACTIONS(807), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(810), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(813), 1, - anon_sym_BQUOTE, - ACTIONS(819), 1, - aux_sym__simple_variable_name_token1, - STATE(591), 1, - aux_sym__literal_repeat1, - ACTIONS(767), 2, + ACTIONS(925), 1, + sym_raw_string, + STATE(586), 1, + sym_string, + ACTIONS(537), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(816), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(176), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(795), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(425), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(769), 19, + ACTIONS(923), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(927), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -19904,26 +20618,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_AMP, - [3495] = 8, + [4355] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(363), 1, + sym__simple_heredoc_body, + ACTIONS(365), 1, + sym__heredoc_body_beginning, + ACTIONS(575), 1, + anon_sym_BQUOTE, + STATE(2373), 1, + sym_heredoc_body, + ACTIONS(549), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [4413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 1, + ACTIONS(813), 1, anon_sym_DQUOTE, - ACTIONS(826), 1, + ACTIONS(931), 1, sym_raw_string, - STATE(621), 1, + STATE(647), 1, sym_string, ACTIONS(537), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(822), 5, + ACTIONS(929), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(828), 5, + ACTIONS(933), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -19957,7 +20730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [3555] = 15, + [4473] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -19966,148 +20739,30 @@ static uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(541), 1, anon_sym_DQUOTE, - ACTIONS(670), 1, + ACTIONS(585), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, + ACTIONS(587), 1, anon_sym_DOLLAR_LPAREN, - STATE(179), 1, + STATE(161), 1, aux_sym_command_repeat2, - STATE(445), 1, + STATE(447), 1, aux_sym__literal_repeat1, - STATE(559), 1, + STATE(536), 1, sym_concatenation, - ACTIONS(577), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, + ACTIONS(583), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(676), 2, + ACTIONS(591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(666), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(581), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [3629] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(670), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, - anon_sym_DOLLAR_LPAREN, - STATE(170), 1, - aux_sym_command_repeat2, - STATE(445), 1, - aux_sym__literal_repeat1, - STATE(559), 1, - sym_concatenation, - ACTIONS(617), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(676), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(666), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(619), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [3703] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(670), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, - anon_sym_DOLLAR_LPAREN, - STATE(170), 1, - aux_sym_command_repeat2, - STATE(445), 1, - aux_sym__literal_repeat1, - STATE(559), 1, - sym_concatenation, ACTIONS(603), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(676), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(666), 3, + ACTIONS(577), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(238), 6, + STATE(273), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -20134,191 +20789,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [3777] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_DOLLAR, - ACTIONS(838), 1, - sym__special_character, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(844), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(846), 1, - anon_sym_BQUOTE, - ACTIONS(850), 1, - aux_sym__simple_variable_name_token1, - STATE(625), 1, - aux_sym__literal_repeat1, - ACTIONS(848), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(190), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(830), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(832), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(326), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(834), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3851] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(854), 1, - anon_sym_DOLLAR, - ACTIONS(856), 1, - sym__special_character, - ACTIONS(858), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(860), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(862), 1, - anon_sym_BQUOTE, - ACTIONS(866), 1, - aux_sym__simple_variable_name_token1, - STATE(590), 1, - aux_sym__literal_repeat1, - ACTIONS(830), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(864), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(187), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(852), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(427), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(834), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3925] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 1, - anon_sym_DOLLAR, - ACTIONS(872), 1, - sym__special_character, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(878), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(880), 1, - anon_sym_BQUOTE, - ACTIONS(884), 1, - aux_sym__simple_variable_name_token1, - STATE(591), 1, - aux_sym__literal_repeat1, - ACTIONS(830), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(882), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(186), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(868), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(425), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(834), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3999] = 6, + [4547] = 6, ACTIONS(55), 1, sym_comment, ACTIONS(363), 1, sym__simple_heredoc_body, ACTIONS(365), 1, sym__heredoc_body_beginning, - STATE(2379), 1, + STATE(2386), 1, sym_heredoc_body, ACTIONS(549), 18, sym_file_descriptor, @@ -20361,247 +20839,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [4055] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(541), 1, - anon_sym_DQUOTE, - ACTIONS(670), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(672), 1, - anon_sym_DOLLAR_LPAREN, - STATE(180), 1, - aux_sym_command_repeat2, - STATE(445), 1, - aux_sym__literal_repeat1, - STATE(559), 1, - sym_concatenation, - ACTIONS(627), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(676), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(666), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(629), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [4129] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 1, - anon_sym_DOLLAR, - ACTIONS(872), 1, - sym__special_character, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(878), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(880), 1, - anon_sym_BQUOTE, - ACTIONS(890), 1, - aux_sym__simple_variable_name_token1, - STATE(591), 1, - aux_sym__literal_repeat1, - ACTIONS(882), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(886), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(176), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(868), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(425), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(888), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4203] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(854), 1, - anon_sym_DOLLAR, - ACTIONS(856), 1, - sym__special_character, - ACTIONS(858), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(860), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(862), 1, - anon_sym_BQUOTE, - ACTIONS(892), 1, - aux_sym__simple_variable_name_token1, - STATE(590), 1, - aux_sym__literal_repeat1, - ACTIONS(864), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(886), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(174), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(852), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(427), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(888), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4277] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(896), 1, - sym_raw_string, - STATE(613), 1, - sym_string, - ACTIONS(537), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(894), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(898), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 26, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [4337] = 7, + [4603] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(363), 1, - sym__simple_heredoc_body, - ACTIONS(365), 1, - sym__heredoc_body_beginning, - ACTIONS(557), 1, - anon_sym_BQUOTE, - STATE(2329), 1, - sym_heredoc_body, - ACTIONS(549), 17, + ACTIONS(939), 2, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + ACTIONS(937), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -20617,9 +20861,10 @@ static uint16_t ts_small_parse_table[] = { sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(547), 21, + ACTIONS(935), 21, anon_sym_for, anon_sym_while, anon_sym_if, @@ -20641,282 +20886,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [4395] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_DOLLAR, - ACTIONS(838), 1, - sym__special_character, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(844), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(846), 1, - anon_sym_BQUOTE, - ACTIONS(900), 1, - aux_sym__simple_variable_name_token1, - STATE(625), 1, - aux_sym__literal_repeat1, - ACTIONS(848), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(191), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(832), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(886), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(326), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(888), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4469] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, - anon_sym_DOLLAR, - ACTIONS(908), 1, - sym__special_character, - ACTIONS(911), 1, - anon_sym_DQUOTE, - ACTIONS(914), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(917), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(920), 1, - anon_sym_BQUOTE, - ACTIONS(926), 1, - aux_sym__simple_variable_name_token1, - STATE(625), 1, - aux_sym__literal_repeat1, - ACTIONS(923), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(191), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(767), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(902), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(326), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(769), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4543] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(931), 1, - sym_raw_string, - STATE(563), 1, - sym_string, - ACTIONS(537), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(929), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(933), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [4603] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 1, - anon_sym_DOLLAR, - ACTIONS(872), 1, - sym__special_character, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(878), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(890), 1, - aux_sym__simple_variable_name_token1, - STATE(591), 1, - aux_sym__literal_repeat1, - ACTIONS(882), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(886), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(176), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(868), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(425), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(888), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [4674] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_esac, - ACTIONS(553), 1, - anon_sym_SEMI_SEMI, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [4727] = 24, + [4654] = 24, ACTIONS(55), 1, sym_comment, ACTIONS(57), 1, @@ -20941,15 +20911,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(935), 1, + ACTIONS(941), 1, sym_variable_name, - STATE(158), 1, + STATE(145), 1, sym_command_name, - STATE(417), 1, + STATE(418), 1, aux_sym__literal_repeat1, - STATE(611), 1, + STATE(548), 1, sym_concatenation, - STATE(2600), 1, + STATE(2619), 1, sym_subscript, ACTIONS(109), 2, anon_sym_LT_LPAREN, @@ -20962,11 +20932,11 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(606), 3, + STATE(547), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - STATE(1480), 3, + STATE(1499), 3, sym_subshell, sym_test_command, sym_command, @@ -20976,14 +20946,443 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(260), 6, + STATE(242), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [4818] = 4, + [4745] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(573), 1, + anon_sym_esac, + ACTIONS(575), 1, + anon_sym_SEMI_SEMI, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [4798] = 24, + ACTIONS(55), 1, + sym_comment, + ACTIONS(57), 1, + sym_file_descriptor, + ACTIONS(65), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(89), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(215), 1, + sym__special_character, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(225), 1, + anon_sym_BQUOTE, + ACTIONS(941), 1, + sym_variable_name, + STATE(172), 1, + sym_command_name, + STATE(374), 1, + aux_sym__literal_repeat1, + STATE(581), 1, + sym_concatenation, + STATE(2619), 1, + sym_subscript, + ACTIONS(227), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(35), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(219), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(583), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(1499), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(37), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(235), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [4889] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(575), 2, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + ACTIONS(549), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(547), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [4940] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(943), 2, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + ACTIONS(937), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(935), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [4991] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_DOLLAR, + ACTIONS(862), 1, + sym__special_character, + ACTIONS(864), 1, + anon_sym_DQUOTE, + ACTIONS(866), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(868), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(874), 1, + aux_sym__simple_variable_name_token1, + STATE(543), 1, + aux_sym__literal_repeat1, + ACTIONS(852), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(183), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(858), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(426), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(854), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [5062] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_SEMI_SEMI, + ACTIONS(945), 1, + anon_sym_esac, + ACTIONS(937), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(935), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [5115] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(939), 1, + anon_sym_SEMI_SEMI, + ACTIONS(947), 1, + anon_sym_esac, + ACTIONS(937), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(935), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [5168] = 24, + ACTIONS(55), 1, + sym_comment, + ACTIONS(57), 1, + sym_file_descriptor, + ACTIONS(65), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(89), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(941), 1, + sym_variable_name, + STATE(175), 1, + sym_command_name, + STATE(418), 1, + aux_sym__literal_repeat1, + STATE(548), 1, + sym_concatenation, + STATE(2619), 1, + sym_subscript, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(35), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(101), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(545), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(1499), 3, + sym_subshell, + sym_test_command, + sym_command, + ACTIONS(37), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(242), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [5259] = 4, ACTIONS(55), 1, sym_comment, ACTIONS(553), 2, @@ -21030,55 +21429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [4869] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(941), 1, - anon_sym_esac, - ACTIONS(943), 1, - anon_sym_SEMI_SEMI, - ACTIONS(939), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(937), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [4922] = 24, + [5310] = 24, ACTIONS(11), 1, anon_sym_LPAREN_LPAREN, ACTIONS(21), 1, @@ -21103,15 +21454,15 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(57), 1, sym_file_descriptor, - ACTIONS(935), 1, + ACTIONS(941), 1, sym_variable_name, - STATE(151), 1, + STATE(168), 1, sym_command_name, - STATE(301), 1, + STATE(473), 1, aux_sym__literal_repeat1, - STATE(560), 1, + STATE(564), 1, sym_concatenation, - STATE(2600), 1, + STATE(2619), 1, sym_subscript, ACTIONS(53), 2, anon_sym_LT_LPAREN, @@ -21124,11 +21475,11 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(592), 3, + STATE(571), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - STATE(1738), 3, + STATE(1727), 3, sym_subshell, sym_test_command, sym_command, @@ -21138,18 +21489,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(241), 6, + STATE(246), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [5013] = 4, + [5401] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(557), 2, - anon_sym_RPAREN, + ACTIONS(551), 1, + anon_sym_esac, + ACTIONS(553), 1, anon_sym_SEMI_SEMI, ACTIONS(549), 18, sym_file_descriptor, @@ -21192,225 +21544,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [5064] = 24, - ACTIONS(55), 1, - sym_comment, - ACTIONS(57), 1, - sym_file_descriptor, - ACTIONS(65), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(89), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(211), 1, - anon_sym_DOLLAR, - ACTIONS(213), 1, - sym__special_character, - ACTIONS(215), 1, - anon_sym_DQUOTE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(221), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(223), 1, - anon_sym_BQUOTE, - ACTIONS(935), 1, - sym_variable_name, - STATE(157), 1, - sym_command_name, - STATE(429), 1, - aux_sym__literal_repeat1, - STATE(579), 1, - sym_concatenation, - STATE(2600), 1, - sym_subscript, - ACTIONS(225), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(35), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(217), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(581), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1480), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(37), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(263), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [5155] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(945), 2, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - ACTIONS(939), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(937), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [5206] = 24, - ACTIONS(55), 1, - sym_comment, - ACTIONS(57), 1, - sym_file_descriptor, - ACTIONS(65), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(89), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, - anon_sym_BQUOTE, - ACTIONS(935), 1, - sym_variable_name, - STATE(185), 1, - sym_command_name, - STATE(417), 1, - aux_sym__literal_repeat1, - STATE(611), 1, - sym_concatenation, - STATE(2600), 1, - sym_subscript, - ACTIONS(109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(35), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(101), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(596), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1480), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(37), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(260), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [5297] = 14, + [5454] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(870), 1, + ACTIONS(860), 1, anon_sym_DOLLAR, - ACTIONS(872), 1, + ACTIONS(862), 1, sym__special_character, - ACTIONS(874), 1, + ACTIONS(864), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(878), 1, + ACTIONS(868), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(947), 1, + ACTIONS(949), 1, aux_sym__simple_variable_name_token1, - STATE(591), 1, + STATE(543), 1, aux_sym__literal_repeat1, - ACTIONS(830), 2, + ACTIONS(805), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(882), 2, + ACTIONS(872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(193), 2, + STATE(199), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(868), 3, + ACTIONS(858), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(425), 6, + STATE(426), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(834), 19, + ACTIONS(807), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -21430,155 +21601,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [5368] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(943), 2, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - ACTIONS(939), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(937), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [5419] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(945), 1, - anon_sym_SEMI_SEMI, - ACTIONS(949), 1, - anon_sym_esac, - ACTIONS(939), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(937), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [5472] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(555), 1, - anon_sym_esac, - ACTIONS(557), 1, - anon_sym_SEMI_SEMI, - ACTIONS(549), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, [5525] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(943), 1, ts_builtin_sym_end, - ACTIONS(549), 18, + ACTIONS(937), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -21597,7 +21625,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(547), 21, + ACTIONS(935), 21, anon_sym_for, anon_sym_while, anon_sym_if, @@ -21622,9 +21650,9 @@ static uint16_t ts_small_parse_table[] = { [5575] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(939), 1, ts_builtin_sym_end, - ACTIONS(939), 18, + ACTIONS(937), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -21643,7 +21671,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(937), 21, + ACTIONS(935), 21, anon_sym_for, anon_sym_while, anon_sym_if, @@ -21668,9 +21696,9 @@ static uint16_t ts_small_parse_table[] = { [5625] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(943), 1, + ACTIONS(553), 1, ts_builtin_sym_end, - ACTIONS(939), 18, + ACTIONS(549), 18, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -21689,7 +21717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(937), 21, + ACTIONS(547), 21, anon_sym_for, anon_sym_while, anon_sym_if, @@ -21714,7 +21742,7 @@ static uint16_t ts_small_parse_table[] = { [5675] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(575), 1, ts_builtin_sym_end, ACTIONS(549), 18, sym_file_descriptor, @@ -21760,7 +21788,52 @@ static uint16_t ts_small_parse_table[] = { [5725] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(283), 19, + ACTIONS(762), 19, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(760), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [5773] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(269), 19, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -21802,97 +21875,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [5773] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(700), 19, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(698), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [5821] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(557), 1, - anon_sym_BQUOTE, - ACTIONS(549), 17, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [5870] = 3, + [5821] = 3, ACTIONS(55), 1, sym_comment, ACTIONS(549), 18, @@ -21936,7 +21919,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, + [5868] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(939), 1, + anon_sym_BQUOTE, + ACTIONS(937), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(935), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, [5917] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(943), 1, + anon_sym_BQUOTE, + ACTIONS(937), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(935), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [5966] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(937), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_LPAREN_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(935), 21, + anon_sym_for, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + 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_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + sym_word, + [6013] = 4, ACTIONS(55), 1, sym_comment, ACTIONS(553), 1, @@ -21981,101 +22098,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [5966] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(943), 1, - anon_sym_BQUOTE, - ACTIONS(939), 17, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(937), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, - [6015] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(939), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(937), 21, - anon_sym_for, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - sym_word, [6062] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(575), 1, anon_sym_BQUOTE, - ACTIONS(939), 17, + ACTIONS(549), 17, sym_file_descriptor, sym_variable_name, anon_sym_LPAREN_LPAREN, @@ -22093,7 +22121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(937), 21, + ACTIONS(547), 21, anon_sym_for, anon_sym_while, anon_sym_if, @@ -22115,25 +22143,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, sym_word, - [6111] = 7, + [6111] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(953), 1, anon_sym_LF, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, ACTIONS(957), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(959), 2, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, sym_file_descriptor, sym_variable_name, - STATE(1333), 4, + ACTIONS(955), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(955), 9, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6172] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(969), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(973), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(971), 8, anon_sym_SEMI, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -22161,36 +22239,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6164] = 11, + [6225] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(555), 1, - anon_sym_RPAREN, - ACTIONS(961), 1, + ACTIONS(969), 1, anon_sym_LF, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, + ACTIONS(957), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(963), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, + sym_file_descriptor, + sym_variable_name, + STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, + ACTIONS(971), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, ACTIONS(951), 19, anon_sym_LT, anon_sym_GT, @@ -22211,345 +22285,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6225] = 6, + [6278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(977), 1, - anon_sym_LPAREN, ACTIONS(979), 1, - sym__concat, - STATE(271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(973), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(975), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [6276] = 11, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(981), 1, + sym__concat, + STATE(245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(975), 3, + sym_file_descriptor, ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(977), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [6329] = 11, + ACTIONS(3), 1, + sym_comment, ACTIONS(983), 1, + ts_builtin_sym_end, + ACTIONS(985), 1, anon_sym_LF, ACTIONS(993), 1, anon_sym_LT_LT_LT, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(987), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(989), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(991), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(985), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1331), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6337] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, - anon_sym_LPAREN, - ACTIONS(997), 1, - sym__concat, - STATE(240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(973), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(975), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [6388] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, - anon_sym_LPAREN, - ACTIONS(999), 1, - sym__concat, - STATE(272), 1, - aux_sym_concatenation_repeat1, - ACTIONS(973), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(975), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [6439] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(953), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6492] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 1, - sym_variable_name, - ACTIONS(1001), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1003), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6543] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1005), 1, - anon_sym_LF, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1007), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6604] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(557), 1, - ts_builtin_sym_end, - ACTIONS(993), 1, - anon_sym_LT_LT_LT, - ACTIONS(1011), 1, - anon_sym_LF, - ACTIONS(959), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(987), 2, + ACTIONS(973), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, ACTIONS(989), 2, @@ -22558,11 +22351,11 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(991), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1013), 3, + ACTIONS(987), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1331), 4, + STATE(1332), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -22587,122 +22380,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6665] = 6, + [6390] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(551), 1, + anon_sym_RPAREN, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(995), 1, + anon_sym_LF, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(997), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6451] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 1, + anon_sym_LF, + ACTIONS(1007), 1, + anon_sym_LT_LT_LT, + ACTIONS(959), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, sym_variable_name, ACTIONS(1001), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1333), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1003), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 1, - sym_variable_name, - ACTIONS(1001), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1331), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1003), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6767] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1015), 1, - anon_sym_LF, - ACTIONS(1021), 1, - anon_sym_LT_LT_LT, - ACTIONS(555), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(957), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1017), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(1019), 2, + ACTIONS(1003), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1005), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(1333), 4, + STATE(1329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -22727,78 +22480,172 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6828] = 7, + [6512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, + ACTIONS(967), 1, sym_variable_name, - ACTIONS(987), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1331), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 8, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6881] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 1, - anon_sym_LT_LT_LT, - ACTIONS(1023), 1, - anon_sym_LF, - ACTIONS(957), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, ACTIONS(1009), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(1011), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6563] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(553), 1, + ts_builtin_sym_end, + ACTIONS(993), 1, + anon_sym_LT_LT_LT, + ACTIONS(1013), 1, + anon_sym_LF, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(973), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(989), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(991), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1015), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6624] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(967), 1, + sym_variable_name, + ACTIONS(1009), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(1011), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6675] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, + anon_sym_LT_LT_LT, + ACTIONS(1017), 1, + anon_sym_LF, + ACTIONS(551), 2, anon_sym_esac, anon_sym_SEMI_SEMI, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1003), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1005), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(1019), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1025), 2, anon_sym_SEMI, anon_sym_AMP, - STATE(1333), 4, + STATE(1329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -22823,25 +22670,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6942] = 5, + [6736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 1, + ACTIONS(1021), 1, + anon_sym_LPAREN, + ACTIONS(1023), 1, sym__concat, - STATE(253), 1, + STATE(261), 1, aux_sym_concatenation_repeat1, - ACTIONS(1027), 4, + ACTIONS(975), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1029), 30, + ACTIONS(977), 32, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -22863,21 +22713,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [6990] = 5, + [6787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 1, + ACTIONS(1021), 1, + anon_sym_LPAREN, + ACTIONS(1025), 1, sym__concat, - STATE(235), 1, + STATE(254), 1, aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, + ACTIONS(975), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1033), 31, + ACTIONS(977), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [6838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(967), 1, + sym_variable_name, + ACTIONS(1009), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(1011), 19, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -22896,1047 +22804,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, anon_sym_AMP, - [7038] = 10, + [6889] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1040), 1, + ACTIONS(969), 1, anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1042), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1003), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7096] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1044), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1046), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7154] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 1, - sym__concat, - STATE(272), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1050), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1048), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 1, - sym__concat, - STATE(239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1033), 32, + ACTIONS(971), 9, anon_sym_SEMI, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1059), 1, - sym__concat, - STATE(239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1055), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7298] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(979), 1, - sym__concat, - STATE(271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(973), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(975), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7346] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1065), 1, - sym__concat, - STATE(252), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1063), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1061), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7394] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(979), 1, - sym__concat, - STATE(271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1031), 1, - sym__concat, - STATE(253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1065), 1, - sym__concat, - STATE(252), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1027), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1029), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7538] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 1, - sym__concat, - STATE(246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1033), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7586] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1074), 1, - sym__concat, - STATE(247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1031), 1, - sym__concat, - STATE(253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1063), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1061), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7682] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1077), 1, - sym__concat, - STATE(249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7730] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(555), 1, - anon_sym_BQUOTE, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1080), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1084), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1086), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1082), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7790] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 1, - sym__concat, - STATE(276), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1063), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1061), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1090), 1, - sym__concat, - STATE(235), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1055), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7886] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 1, - sym__concat, - STATE(247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1055), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - sym__concat, - STATE(240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1050), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1048), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [7982] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1094), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1096), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8040] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - sym__concat, - STATE(240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1100), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1098), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(979), 1, - sym__concat, - STATE(271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1100), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1098), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1065), 1, - sym__concat, - STATE(252), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1069), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8184] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(953), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1084), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 8, - anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -23964,328 +22851,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [8236] = 5, + [6942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 1, - sym__concat, - STATE(272), 1, - aux_sym_concatenation_repeat1, - ACTIONS(973), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(975), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(979), 1, - sym__concat, - STATE(271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1050), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1048), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 1, - sym__concat, - STATE(272), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8380] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - sym__concat, - STATE(240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(973), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(975), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8428] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(999), 1, - sym__concat, - STATE(272), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1100), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1098), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8476] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1009), 1, - anon_sym_BQUOTE, - ACTIONS(1102), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, + ACTIONS(967), 1, sym_variable_name, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1084), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1086), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1104), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8536] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1009), 1, - anon_sym_SEMI_SEMI, - ACTIONS(1106), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1007), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8596] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 1, - sym_variable_name, - ACTIONS(1001), 2, + ACTIONS(1009), 2, sym_file_descriptor, anon_sym_LF, - STATE(1309), 4, + STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -24301,7 +22875,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(1003), 19, + ACTIONS(1011), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -24321,66 +22895,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [8646] = 11, + [6992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(555), 1, - anon_sym_SEMI_SEMI, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1108), 1, - anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(963), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(951), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8706] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, + ACTIONS(1023), 1, sym__concat, - STATE(240), 1, + STATE(261), 1, aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, + ACTIONS(975), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1069), 32, + ACTIONS(977), 32, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -24413,30 +22938,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [8754] = 10, + [7040] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, + ACTIONS(959), 1, + anon_sym_SEMI_SEMI, + ACTIONS(965), 1, anon_sym_LT_LT_LT, - ACTIONS(1110), 1, + ACTIONS(1027), 1, anon_sym_LF, - ACTIONS(959), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(965), 2, + ACTIONS(955), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(957), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(967), 2, + ACTIONS(961), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(969), 2, + ACTIONS(963), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1112), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -24461,18 +22987,364 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [8812] = 5, + [7100] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 1, + ACTIONS(969), 1, + anon_sym_LF, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1029), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(971), 8, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 1, sym__concat, - STATE(249), 1, + STATE(261), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, + ACTIONS(1033), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1031), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [7200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1039), 1, + sym__concat, + STATE(239), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + sym__concat, + STATE(247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1044), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 1, + sym__concat, + STATE(254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1033), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1031), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [7344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 1, + sym__concat, + STATE(254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(975), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(977), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [7392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 1, + sym__concat, + STATE(269), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 1, + sym__concat, + STATE(269), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1056), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1054), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1058), 1, + sym__concat, + STATE(264), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1055), 31, + ACTIONS(1044), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -24504,17 +23376,238 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [8860] = 5, + [7536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 1, + ACTIONS(981), 1, sym__concat, - STATE(246), 1, + STATE(245), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, + ACTIONS(975), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(977), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [7584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1060), 1, + sym__concat, + STATE(247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1035), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7632] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(959), 1, + anon_sym_BQUOTE, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1063), 1, + anon_sym_LF, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1029), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1067), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1065), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + sym__concat, + STATE(240), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1048), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 1, + sym__concat, + STATE(260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [7788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 1, + sym__concat, + STATE(251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1055), 32, + ACTIONS(1035), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -24547,18 +23640,952 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, + [7836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 1, + sym__concat, + STATE(261), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [7884] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1080), 1, + anon_sym_LF, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1082), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 1, + sym__concat, + STATE(251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1044), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [7990] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_SEMI_SEMI, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1086), 1, + anon_sym_LF, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(997), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8050] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + sym__concat, + STATE(240), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1054), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8098] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1088), 1, + anon_sym_LF, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1090), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8156] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1092), 1, + anon_sym_LF, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1094), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(981), 1, + sym__concat, + STATE(245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1033), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1031), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1096), 1, + sym__concat, + STATE(239), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1044), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1098), 1, + sym__concat, + STATE(262), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1044), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1100), 1, + sym__concat, + STATE(262), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1035), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 1, + sym__concat, + STATE(254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1103), 1, + sym__concat, + STATE(264), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + sym__concat, + STATE(240), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8550] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(981), 1, + sym__concat, + STATE(245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1106), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1108), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 1, + sym__concat, + STATE(260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8646] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1110), 1, + anon_sym_LF, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1112), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + sym__concat, + STATE(275), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1044), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 1, + sym__concat, + STATE(260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1056), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1054), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8800] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_BQUOTE, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1116), 1, + anon_sym_LF, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(967), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1029), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1067), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1118), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(951), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 1, + sym__concat, + STATE(269), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, [8908] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 1, + ACTIONS(1025), 1, sym__concat, - STATE(276), 1, + STATE(254), 1, aux_sym_concatenation_repeat1, - ACTIONS(1027), 3, + ACTIONS(1106), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1029), 31, + ACTIONS(1108), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -24566,6 +24593,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -24587,28 +24616,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, [8956] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 1, + ACTIONS(981), 1, sym__concat, - STATE(276), 1, + STATE(245), 1, aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, + ACTIONS(1078), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1069), 31, + ACTIONS(1076), 31, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -24630,24 +24659,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, [9004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(1120), 1, sym__concat, STATE(275), 1, aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, + ACTIONS(1037), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1033), 31, + ACTIONS(1035), 31, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -24679,15 +24707,55 @@ static uint16_t ts_small_parse_table[] = { [9052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 1, + ACTIONS(1023), 1, sym__concat, - STATE(275), 1, + STATE(261), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, + ACTIONS(1106), 2, sym_file_descriptor, + anon_sym_LF, + ACTIONS(1108), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1055), 31, + ACTIONS(1123), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -24719,25 +24787,1305 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [9100] = 8, + [9143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1125), 1, + ACTIONS(1129), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1127), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1127), 1, sym_raw_string, - STATE(1386), 1, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1131), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1135), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1147), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1151), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1157), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1161), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1163), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1035), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1167), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1173), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1173), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1161), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1175), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1157), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1179), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1179), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1167), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1151), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1183), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1187), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1191), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1195), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1183), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1163), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1183), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1127), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1123), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10519] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1201), 1, + anon_sym_DQUOTE, + ACTIONS(1203), 1, + sym_raw_string, + STATE(1355), 1, sym_string, ACTIONS(537), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1123), 5, + ACTIONS(1199), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(1129), 5, + ACTIONS(1205), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -24764,61 +26112,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [9153] = 5, + [10572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, + ACTIONS(1211), 1, sym__special_character, - STATE(413), 1, + STATE(429), 1, aux_sym__literal_repeat1, - ACTIONS(1133), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1131), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1137), 1, - sym__concat, - STATE(279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 4, + ACTIONS(1207), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 29, + ACTIONS(1209), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -24837,7 +26143,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -24846,101 +26151,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [9247] = 5, + [10619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 1, + ACTIONS(1213), 1, sym__concat, - STATE(279), 1, + STATE(316), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 4, + ACTIONS(1078), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1055), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9294] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1142), 1, - sym__concat, - STATE(280), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1144), 31, + ACTIONS(1076), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -24969,457 +26194,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [9384] = 3, + [10666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1148), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1152), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1156), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1160), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1164), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1168), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9685] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 1, - sym__concat, - STATE(291), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1055), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9732] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1174), 1, - sym__concat, - STATE(291), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1177), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1181), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 4, + ACTIONS(1189), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, @@ -25456,10 +26236,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [9908] = 3, + [10709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 4, + ACTIONS(1215), 1, + sym__concat, + STATE(314), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1035), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 1, + sym__special_character, + STATE(339), 1, + aux_sym__literal_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1218), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10803] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1224), 1, + sym__concat, + STATE(314), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1044), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, @@ -25496,24 +26402,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [9951] = 5, + [10893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 1, - sym__concat, - STATE(303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, + ACTIONS(1228), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(1069), 30, + ACTIONS(1226), 32, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -25535,60 +26440,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [9998] = 5, + [10936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 1, + ACTIONS(1230), 1, sym__concat, - STATE(297), 1, + STATE(449), 1, aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, + ACTIONS(1078), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [10045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1198), 31, + ACTIONS(1076), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -25620,18 +26484,1994 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10088] = 5, + [10983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 1, + ACTIONS(1197), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1195), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(448), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1232), 1, + sym__concat, + STATE(340), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1044), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1151), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + sym__special_character, + STATE(334), 1, aux_sym__literal_repeat1, - ACTIONS(1204), 3, + ACTIONS(1207), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1202), 30, + ACTIONS(1209), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1240), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1244), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1163), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1147), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1179), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1183), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1139), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1252), 1, + sym__special_character, + STATE(334), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1248), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1035), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1131), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1255), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + sym__special_character, + STATE(339), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1248), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 1, + sym__concat, + STATE(340), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1244), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1240), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 1, + sym__special_character, + STATE(344), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1248), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1139), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1143), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1147), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 1, + sym__special_character, + STATE(339), 1, + aux_sym__literal_repeat1, + ACTIONS(1270), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1268), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1255), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1175), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1173), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1161), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1157), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1187), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1123), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1255), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1167), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1127), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1226), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1127), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1226), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1123), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1167), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1131), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1276), 1, + sym__concat, + STATE(321), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1272), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 1, + sym__special_character, + STATE(404), 1, + aux_sym__literal_repeat1, + ACTIONS(1280), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1278), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -25662,23 +28502,22 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10135] = 3, + [13169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 4, + ACTIONS(1193), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, - ACTIONS(1210), 31, + ACTIONS(1191), 31, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -25700,22 +28539,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10178] = 5, + [13212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 1, - sym__special_character, - STATE(360), 1, - aux_sym__literal_repeat1, - ACTIONS(1212), 3, + ACTIONS(1197), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1214), 30, + ACTIONS(1195), 31, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1195), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -25734,6 +28611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -25744,25 +28622,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [10225] = 5, + [13298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1191), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13341] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1222), 1, sym__special_character, - STATE(302), 1, + STATE(339), 1, aux_sym__literal_repeat1, - ACTIONS(1218), 4, + ACTIONS(1286), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1220), 29, + ACTIONS(1284), 31, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -25783,21 +28702,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10272] = 5, + [13388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, + ACTIONS(1288), 1, sym__concat, - STATE(297), 1, + STATE(402), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, + ACTIONS(1050), 3, sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1055), 30, + ACTIONS(1035), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -25828,21 +28786,61 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10319] = 3, + [13478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 4, + ACTIONS(1181), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1229), 31, + ACTIONS(1179), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1187), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_LT, @@ -25868,16 +28866,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [10362] = 3, + [13564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 5, + ACTIONS(1246), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1233), 30, + ACTIONS(1244), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -25908,16 +28906,16 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10405] = 3, + [13607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 5, + ACTIONS(1242), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1237), 30, + ACTIONS(1240), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -25948,16 +28946,16 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10448] = 3, + [13650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 5, + ACTIONS(1238), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1241), 30, + ACTIONS(1236), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -25988,16 +28986,16 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10491] = 3, + [13693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(1238), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1245), 30, + ACTIONS(1236), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -26028,16 +29026,58 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10534] = 3, + [13736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(1290), 1, + sym__special_character, + STATE(455), 1, + aux_sym__literal_repeat1, + ACTIONS(1220), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1218), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1249), 30, + ACTIONS(1151), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -26068,16 +29108,16 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10577] = 3, + [13826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 5, + ACTIONS(1185), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1253), 30, + ACTIONS(1183), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -26108,16 +29148,376 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10620] = 3, + [13869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 5, + ACTIONS(1155), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1157), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1161), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1173), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1163), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1147), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1135), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1229), 30, + ACTIONS(1195), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -26148,22 +29548,23 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10663] = 3, + [14299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 5, + ACTIONS(1133), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1210), 30, + ACTIONS(1131), 32, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26185,13 +29586,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10706] = 3, + [14342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 5, + ACTIONS(1193), 5, sym_file_descriptor, sym__concat, sym_variable_name, @@ -26228,10 +29628,10 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10749] = 3, + [14385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 5, + ACTIONS(1189), 5, sym_file_descriptor, sym__concat, sym_variable_name, @@ -26268,16 +29668,56 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10792] = 3, + [14428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 5, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1123), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1257), 30, + ACTIONS(1157), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -26308,17 +29748,17 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10835] = 3, + [14514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 5, + ACTIONS(1228), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1261), 30, + ACTIONS(1226), 31, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -26348,17 +29788,59 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10878] = 3, + [14557] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1292), 1, + sym__concat, + STATE(405), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1044), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1265), 30, + ACTIONS(1255), 31, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -26388,60 +29870,20 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10921] = 3, + [14647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1160), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1294), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [10964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1271), 1, - sym__special_character, - STATE(302), 1, + STATE(404), 1, aux_sym__literal_repeat1, - ACTIONS(1267), 4, + ACTIONS(1250), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1269), 29, + ACTIONS(1248), 30, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -26470,380 +29912,18 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [11011] = 3, + [14694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 5, - sym_file_descriptor, + ACTIONS(1297), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1156), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1181), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1177), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1152), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11269] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1193), 1, - sym__concat, - STATE(303), 1, + STATE(405), 1, aux_sym_concatenation_repeat1, - ACTIONS(1273), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1275), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1198), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11402] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 1, - sym__concat, - STATE(447), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1027), 3, + ACTIONS(1037), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1029), 30, + ACTIONS(1035), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -26874,2275 +29954,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [11449] = 3, + [14741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1148), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1168), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1144), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1249), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1245), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1164), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, + ACTIONS(1246), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1265), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1241), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1261), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1257), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1187), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1191), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1210), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1229), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1253), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1249), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1245), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1241), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1237), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1233), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1144), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1279), 1, - sym__special_character, - STATE(352), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1220), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1168), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12485] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 1, - sym__special_character, - STATE(352), 1, - aux_sym__literal_repeat1, - ACTIONS(1204), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1202), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1148), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 1, - sym__concat, - STATE(290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - sym__concat, - STATE(358), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1055), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 1, - sym__concat, - STATE(358), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12716] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1216), 1, - sym__special_character, - STATE(360), 1, - aux_sym__literal_repeat1, - ACTIONS(1291), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1293), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12763] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1295), 1, - sym__special_character, - STATE(360), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1220), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1142), 1, - sym__concat, - STATE(280), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1027), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1029), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12857] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1271), 1, - sym__special_character, - STATE(302), 1, - aux_sym__literal_repeat1, - ACTIONS(1204), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1202), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1164), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12947] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - sym__concat, - STATE(357), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1069), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1237), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1233), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1152), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1144), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1148), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1033), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1152), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1156), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1177), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1233), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1237), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1241), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1249), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1160), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1210), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1191), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1187), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1144), 31, + ACTIONS(1244), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -29174,15 +29994,95 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [13940] = 3, + [14784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 4, + ACTIONS(1159), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1161), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1173), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1148), 31, + ACTIONS(1240), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -29214,183 +30114,22 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [13983] = 3, + [14913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1257), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1261), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1265), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1160), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, + ACTIONS(1177), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1181), 31, + ACTIONS(1175), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29412,17 +30151,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [14198] = 3, + [14956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 4, + ACTIONS(1165), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1163), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1033), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -29454,15 +30234,95 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [14241] = 3, + [15042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 4, + ACTIONS(1149), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1147), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1151), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [15128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1152), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -29494,55 +30354,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [14284] = 3, + [15171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1156), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1198), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -29574,15 +30394,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [14370] = 3, + [15214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1198), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -29614,60 +30434,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [14413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1156), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14456] = 5, + [15257] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1300), 1, sym__special_character, - STATE(411), 1, + STATE(344), 1, aux_sym__literal_repeat1, - ACTIONS(1133), 2, + ACTIONS(1286), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1131), 31, + ACTIONS(1284), 31, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -29696,15 +30476,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [14503] = 3, + [15304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 4, + ACTIONS(1145), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1139), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1160), 31, + ACTIONS(1195), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -29736,625 +30636,13 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [14546] = 3, + [15476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 3, + ACTIONS(1133), 5, sym_file_descriptor, sym__concat, - anon_sym_LF, - ACTIONS(1156), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1181), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1177), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1152), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1164), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1033), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1168), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14933] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, - sym__concat, - STATE(412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1055), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14980] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - sym__special_character, - STATE(411), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1220), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15027] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1307), 1, - sym__concat, - STATE(412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15074] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - sym__special_character, - STATE(413), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1220), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1177), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - sym__special_character, - STATE(411), 1, - aux_sym__literal_repeat1, - ACTIONS(1291), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1293), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1216), 1, - sym__special_character, - STATE(360), 1, - aux_sym__literal_repeat1, - ACTIONS(1133), 3, - sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, ACTIONS(1131), 30, @@ -30364,8 +30652,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30378,6 +30664,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -30386,302 +30673,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [15258] = 5, + [15519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, + ACTIONS(1302), 1, + sym__concat, + STATE(435), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1044), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(413), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1234), 1, + sym__special_character, + STATE(334), 1, aux_sym__literal_repeat1, - ACTIONS(1212), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1214), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1148), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1168), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1144), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1164), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1181), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15563] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 1, - sym__special_character, - STATE(352), 1, - aux_sym__literal_repeat1, - ACTIONS(1267), 3, + ACTIONS(1280), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1269), 30, + ACTIONS(1278), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -30712,17 +30760,17 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [15610] = 5, + [15613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, + ACTIONS(1230), 1, sym__concat, - STATE(290), 1, + STATE(449), 1, aux_sym_concatenation_repeat1, - ACTIONS(1273), 2, + ACTIONS(1274), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1275), 31, + ACTIONS(1272), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -30754,621 +30802,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [15657] = 3, + [15660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - sym__concat, - STATE(410), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1273), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1275), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 1, - sym__special_character, - STATE(448), 1, - aux_sym__literal_repeat1, - ACTIONS(1267), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1269), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15794] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - sym__special_character, - STATE(411), 1, - aux_sym__literal_repeat1, - ACTIONS(1212), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1214), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1265), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1261), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1257), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1187), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1191), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1210), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1249), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1241), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 4, + ACTIONS(1242), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1257), 31, + ACTIONS(1240), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -31400,740 +30842,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [16357] = 3, + [15703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1237), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1233), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1164), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 1, - sym__special_character, - STATE(413), 1, - aux_sym__literal_repeat1, - ACTIONS(1291), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1293), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1168), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16576] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 1, - sym__concat, - STATE(449), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1055), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16623] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1317), 1, - sym__special_character, - STATE(448), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1220), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 1, - sym__concat, - STATE(449), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1177), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1181), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1261), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1198), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1198), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - sym__concat, - STATE(357), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1027), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1029), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1265), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1261), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1257), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1187), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 4, + ACTIONS(1193), 4, sym_file_descriptor, sym__concat, sym_variable_name, @@ -32170,15 +30882,57 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17194] = 3, + [15746] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 4, + ACTIONS(1304), 1, + sym__special_character, + STATE(429), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1248), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1210), 31, + ACTIONS(1187), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32210,15 +30964,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17237] = 3, + [15836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 4, + ACTIONS(1155), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1229), 31, + ACTIONS(1157), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32250,175 +31004,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17280] = 3, + [15879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1253), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1249), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1245), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1241), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, + ACTIONS(1246), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1265), 31, + ACTIONS(1244), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -32450,15 +31044,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [17495] = 3, + [15922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 4, + ACTIONS(1282), 1, + sym__special_character, + STATE(404), 1, + aux_sym__literal_repeat1, + ACTIONS(1207), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1209), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1237), 31, + ACTIONS(1161), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32490,23 +31126,24 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17538] = 3, + [16012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 4, - sym_file_descriptor, + ACTIONS(1307), 1, sym__concat, + STATE(435), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1160), 31, + ACTIONS(1035), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -32528,17 +31165,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17581] = 3, + [16059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 4, + ACTIONS(1171), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1233), 31, + ACTIONS(1173), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32570,17 +31208,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17624] = 5, + [16102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1313), 1, - sym__concat, - STATE(410), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, + ACTIONS(1177), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1069), 31, + ACTIONS(1175), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32612,20 +31248,19 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17671] = 5, + [16145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 1, + ACTIONS(1310), 1, sym__concat, - STATE(447), 1, + STATE(424), 1, aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, + ACTIONS(1078), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1069), 30, + ACTIONS(1076), 30, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -32652,16 +31287,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17718] = 3, + [16192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 3, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1261), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -32693,15 +31330,1276 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17760] = 3, + [16235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1179), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1236), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1240), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1244), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1163), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 1, + sym__concat, + STATE(446), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 1, + sym__special_character, + STATE(344), 1, + aux_sym__literal_repeat1, + ACTIONS(1270), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1268), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16587] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1315), 1, + sym__concat, + STATE(448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1035), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16634] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + sym__concat, + STATE(446), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1044), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1226), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1147), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1143), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + sym__concat, + STATE(477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1048), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 4, sym_file_descriptor, sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1183), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + sym__special_character, + STATE(455), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1187), 30, + ACTIONS(1248), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1139), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16990] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym__concat, + STATE(316), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1151), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 1, + sym__special_character, + STATE(455), 1, + aux_sym__literal_repeat1, + ACTIONS(1270), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1268), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1131), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1276), 1, + sym__concat, + STATE(321), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1179), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1167), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1226), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1127), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1123), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1167), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + sym__concat, + STATE(424), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1272), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -32732,15 +32630,102 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17802] = 3, + [17651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 4, + ACTIONS(1211), 1, + sym__special_character, + STATE(429), 1, + aux_sym__literal_repeat1, + ACTIONS(1280), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1278), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 1, + sym__special_character, + STATE(455), 1, + aux_sym__literal_repeat1, + ACTIONS(1286), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1284), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17745] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, sym__concat, + STATE(402), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 3, + sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1210), 30, + ACTIONS(1076), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32771,7 +32756,526 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [17844] = 3, + [17792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1127), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [17835] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + sym__concat, + STATE(477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 1, + sym__concat, + STATE(448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1044), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17929] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 1, + sym__special_character, + STATE(344), 1, + aux_sym__literal_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1218), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1131), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18018] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1327), 1, + sym__special_character, + STATE(480), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1248), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [18064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1143), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1147), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1163), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1175), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1173), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1161), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1157), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18358] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 4, @@ -32779,6 +33283,45 @@ static uint16_t ts_small_parse_table[] = { sym__concat, sym_variable_name, anon_sym_LF, + ACTIONS(1187), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, ACTIONS(1191), 30, anon_sym_SEMI, anon_sym_esac, @@ -32810,15 +33353,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [17886] = 3, + [18442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 4, + ACTIONS(1197), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1187), 30, + ACTIONS(1195), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32849,15 +33392,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [17928] = 3, + [18484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 4, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1257), 30, + ACTIONS(1236), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32888,15 +33431,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [17970] = 3, + [18526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 4, + ACTIONS(1238), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1261), 30, + ACTIONS(1236), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32927,15 +33470,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18012] = 3, + [18568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1242), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1265), 30, + ACTIONS(1240), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -32966,54 +33509,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18054] = 3, + [18610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1261), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, + ACTIONS(1246), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1198), 30, + ACTIONS(1244), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -33044,174 +33548,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18138] = 3, + [18652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1330), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1181), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1265), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1177), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18306] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1323), 1, - sym__special_character, - STATE(487), 1, + STATE(495), 1, aux_sym__literal_repeat1, - ACTIONS(1218), 3, + ACTIONS(1250), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1220), 29, + ACTIONS(1248), 29, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -33241,15 +33589,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18352] = 3, + [18698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 4, + ACTIONS(1333), 1, + sym__special_character, + STATE(496), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1248), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [18744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1168), 30, + ACTIONS(1255), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -33280,15 +33669,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18394] = 3, + [18786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 4, + ACTIONS(1228), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1164), 30, + ACTIONS(1226), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -33319,13 +33708,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18436] = 3, + [18828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1100), 2, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1123), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1098), 32, + ACTIONS(1031), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -33358,18 +33786,413 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18478] = 3, + [18912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(1133), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1131), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [18954] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 1, + anon_sym_DQUOTE, + ACTIONS(1340), 1, + sym_raw_string, + STATE(1610), 1, + sym_string, + ACTIONS(537), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1336), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(1342), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [19006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1147), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1163), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1173), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1161), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1198), 29, + ACTIONS(1127), 30, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -33397,170 +34220,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18520] = 3, + [19384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1181), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1177), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1168), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 3, + ACTIONS(1155), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1233), 31, + ACTIONS(1157), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -33592,325 +34259,13 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [18730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1237), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [18772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1241), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [18814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [18856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1249), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [18898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [18940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [18982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1210), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19024] = 3, + [19426] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1191), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, ACTIONS(1187), 31, anon_sym_SEMI, anon_sym_esac, @@ -33943,14 +34298,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19108] = 3, + [19468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 3, + ACTIONS(1193), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1257), 31, + ACTIONS(1191), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -33982,131 +34337,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19150] = 3, + [19510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1160), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1164), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1168), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 3, + ACTIONS(1197), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1261), 31, + ACTIONS(1195), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34138,55 +34376,16 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19318] = 3, + [19552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1265), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 5, + ACTIONS(1177), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1164), 29, + ACTIONS(1175), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -34216,14 +34415,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19402] = 3, + [19594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 3, + ACTIONS(1238), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1198), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34255,56 +34454,17 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19444] = 3, + [19636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 5, + ACTIONS(1137), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1160), 29, + ACTIONS(1135), 30, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -34333,14 +34493,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19528] = 3, + [19678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 3, + ACTIONS(1238), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1181), 31, + ACTIONS(1236), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34372,14 +34532,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19570] = 3, + [19720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 3, + ACTIONS(1242), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1177), 31, + ACTIONS(1240), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34411,17 +34571,56 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19612] = 5, + [19762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 1, + ACTIONS(1246), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1244), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(518), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [19804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 1, + sym__special_character, + STATE(522), 1, aux_sym__literal_repeat1, - ACTIONS(1218), 2, + ACTIONS(1250), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1220), 30, + ACTIONS(1248), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34452,15 +34651,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19658] = 3, + [19850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 4, + ACTIONS(1169), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1177), 30, + ACTIONS(1167), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34491,54 +34690,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19700] = 3, + [19892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1168), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, + ACTIONS(1037), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1181), 30, + ACTIONS(1035), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -34569,14 +34729,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19784] = 3, + [19934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 3, + ACTIONS(1257), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1164), 31, + ACTIONS(1255), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34608,54 +34768,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19826] = 3, + [19976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 5, + ACTIONS(1228), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1156), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1253), 30, + ACTIONS(1226), 31, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -34684,18 +34804,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19910] = 3, + [20018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 5, + ACTIONS(1125), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1123), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1152), 29, + ACTIONS(1163), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -34725,16 +34885,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19952] = 3, + [20102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 5, + ACTIONS(1171), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 29, + ACTIONS(1173), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -34764,10 +34924,212 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19994] = 3, + [20144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 5, + ACTIONS(1201), 1, + anon_sym_DQUOTE, + ACTIONS(1203), 1, + sym_raw_string, + STATE(1355), 1, + sym_string, + ACTIONS(537), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1199), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(1205), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(535), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [20196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 1, + sym__special_character, + STATE(669), 1, + aux_sym__literal_repeat1, + ACTIONS(1207), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1209), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1179), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1161), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1157), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 5, sym_file_descriptor, sym__concat, sym_variable_name, @@ -34803,22 +35165,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20036] = 3, + [20410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 4, + ACTIONS(1106), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_LF, - ACTIONS(1249), 30, + ACTIONS(1108), 32, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -34842,10 +35204,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20078] = 3, + [20452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 5, + ACTIONS(1193), 5, sym_file_descriptor, sym__concat, sym_variable_name, @@ -34881,172 +35243,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20120] = 3, + [20494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1245), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1241), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1237), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1233), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 5, + ACTIONS(1197), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1148), 29, + ACTIONS(1195), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -35076,16 +35282,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20330] = 3, + [20536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 5, + ACTIONS(1153), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1151), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1210), 29, + ACTIONS(1236), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -35115,137 +35360,228 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20372] = 8, + [20620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1125), 1, + ACTIONS(1238), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1236), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1127), 1, sym_raw_string, - STATE(1386), 1, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1240), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1353), 1, + sym__special_character, + STATE(496), 1, + aux_sym__literal_repeat1, + ACTIONS(1351), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1349), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1183), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20792] = 19, + ACTIONS(55), 1, + sym_comment, + ACTIONS(57), 1, + sym_file_descriptor, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(941), 1, + sym_variable_name, + ACTIONS(1355), 1, + sym__special_character, + STATE(176), 1, + sym_command_name, + STATE(418), 1, + aux_sym__literal_repeat1, + STATE(548), 1, + sym_concatenation, + STATE(2619), 1, + sym_subscript, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(35), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(101), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1335), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(37), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(242), 6, sym_string, - ACTIONS(537), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1123), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(1129), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [20424] = 3, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [20866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1144), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1229), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 4, + ACTIONS(1153), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1160), 30, + ACTIONS(1151), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -35276,96 +35612,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20550] = 3, - ACTIONS(3), 1, + [20908] = 19, + ACTIONS(55), 1, sym_comment, - ACTIONS(1251), 5, + ACTIONS(57), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(95), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(99), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(103), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(941), 1, sym_variable_name, - anon_sym_LF, - ACTIONS(1156), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1355), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1329), 1, - sym__special_character, - STATE(543), 1, + STATE(162), 1, + sym_command_name, + STATE(418), 1, aux_sym__literal_repeat1, - ACTIONS(1204), 3, + STATE(548), 1, + sym_concatenation, + STATE(2619), 1, + sym_subscript, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(35), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(101), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1335), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(37), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(242), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [20982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(975), 2, sym_file_descriptor, - sym_variable_name, anon_sym_LF, - ACTIONS(1202), 29, + ACTIONS(977), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -35373,6 +35681,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35385,47 +35695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 1, sym__special_character, - STATE(543), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1220), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -35436,16 +35706,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20726] = 3, + [21024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 5, + ACTIONS(1246), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1249), 29, + ACTIONS(1244), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -35475,16 +35745,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20768] = 3, + [21066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 5, + ACTIONS(1257), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1245), 29, + ACTIONS(1255), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -35514,15 +35784,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20810] = 3, + [21108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 4, + ACTIONS(1181), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1152), 30, + ACTIONS(1179), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -35553,16 +35823,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20852] = 3, + [21150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 5, + ACTIONS(1228), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1241), 29, + ACTIONS(1226), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -35592,15 +35862,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20894] = 3, + [21192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 4, + ACTIONS(1037), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1033), 30, + ACTIONS(1035), 30, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -35631,293 +35901,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1237), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1069), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1148), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1233), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1257), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1144), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21188] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 1, - sym__special_character, - STATE(555), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1220), 28, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, [21234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, + ACTIONS(1125), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1198), 30, + ACTIONS(1123), 29, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -35948,52 +35943,13 @@ static uint16_t ts_small_parse_table[] = { [21276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 4, + ACTIONS(1078), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1339), 30, + ACTIONS(1076), 31, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -36023,22 +35979,61 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [21360] = 3, + [21318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 2, + ACTIONS(1185), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1048), 32, + ACTIONS(1183), 29, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1167), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36065,19 +36060,19 @@ static uint16_t ts_small_parse_table[] = { [21402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 3, + ACTIONS(1153), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(975), 31, + ACTIONS(1151), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36104,11 +36099,206 @@ static uint16_t ts_small_parse_table[] = { [21444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 3, + ACTIONS(1181), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1179), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1127), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1183), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1035), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1167), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(975), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1069), 31, + ACTIONS(977), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -36140,455 +36330,304 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [21486] = 8, + [21696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 1, + ACTIONS(1149), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1147), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1345), 1, sym_raw_string, - STATE(1516), 1, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1127), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1139), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1131), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21948] = 19, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(57), 1, + sym_file_descriptor, + ACTIONS(941), 1, + sym_variable_name, + ACTIONS(1357), 1, + sym__special_character, + STATE(171), 1, + sym_command_name, + STATE(473), 1, + aux_sym__literal_repeat1, + STATE(564), 1, + sym_concatenation, + STATE(2619), 1, + sym_subscript, + ACTIONS(53), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(35), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(45), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1335), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(37), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(246), 6, sym_string, - ACTIONS(537), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1341), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(1347), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(535), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [21538] = 3, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [22022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1144), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1148), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1349), 1, - sym__special_character, - STATE(565), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1220), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1148), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1152), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1233), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1237), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1241), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1245), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21962] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 1, - sym__special_character, - STATE(555), 1, - aux_sym__literal_repeat1, - ACTIONS(1204), 4, + ACTIONS(1359), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1202), 28, + ACTIONS(1361), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -36607,6 +36646,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -36615,17 +36655,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22008] = 3, + [22064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 4, + ACTIONS(1363), 1, + sym__special_character, + STATE(573), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1249), 30, + ACTIONS(1248), 28, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -36644,6 +36689,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1123), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -36653,18 +36736,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22050] = 3, + [22152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 4, + ACTIONS(1228), 4, sym_file_descriptor, sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1226), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1366), 1, + sym__special_character, + STATE(480), 1, + aux_sym__literal_repeat1, + ACTIONS(1351), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1253), 30, + ACTIONS(1349), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -36683,7 +36807,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -36695,60 +36818,22 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22092] = 3, + [22240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 3, + ACTIONS(1106), 3, sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1160), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 4, - sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1229), 30, + ACTIONS(1108), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36770,24 +36855,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22176] = 3, + [22282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 4, + ACTIONS(1078), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1210), 30, + ACTIONS(1076), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1255), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36809,16 +36933,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22218] = 3, + [22366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 2, + ACTIONS(1246), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1244), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(975), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(975), 32, + ACTIONS(977), 32, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -36851,7 +37013,1080 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [22260] = 3, + [22450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1240), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22492] = 19, + ACTIONS(55), 1, + sym_comment, + ACTIONS(57), 1, + sym_file_descriptor, + ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(225), 1, + anon_sym_BQUOTE, + ACTIONS(941), 1, + sym_variable_name, + ACTIONS(1368), 1, + sym__special_character, + STATE(163), 1, + sym_command_name, + STATE(374), 1, + aux_sym__literal_repeat1, + STATE(581), 1, + sym_concatenation, + STATE(2619), 1, + sym_subscript, + ACTIONS(227), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(35), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(219), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1335), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + ACTIONS(37), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(235), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [22566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 1, + sym__special_character, + STATE(573), 1, + aux_sym__literal_repeat1, + ACTIONS(1207), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1209), 28, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1236), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1127), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1236), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1167), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1195), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1374), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22906] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1376), 1, + sym__special_character, + STATE(522), 1, + aux_sym__literal_repeat1, + ACTIONS(1351), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1349), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1183), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1179), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1151), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1151), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1131), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1139), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1147), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1163), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1175), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1173), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1161), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1157), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1108), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [23582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1361), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23624] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 4, @@ -36859,6 +38094,45 @@ static uint16_t ts_small_parse_table[] = { sym__concat, ts_builtin_sym_end, anon_sym_LF, + ACTIONS(1187), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, ACTIONS(1191), 30, anon_sym_SEMI, anon_sym_PIPE, @@ -36890,226 +38164,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22302] = 19, - ACTIONS(55), 1, - sym_comment, - ACTIONS(57), 1, - sym_file_descriptor, - ACTIONS(211), 1, - anon_sym_DOLLAR, - ACTIONS(215), 1, - anon_sym_DQUOTE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(221), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(223), 1, - anon_sym_BQUOTE, - ACTIONS(935), 1, - sym_variable_name, - ACTIONS(1354), 1, - sym__special_character, - STATE(169), 1, - sym_command_name, - STATE(429), 1, - aux_sym__literal_repeat1, - STATE(579), 1, - sym_concatenation, - STATE(2600), 1, - sym_subscript, - ACTIONS(225), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(35), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(217), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1328), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(37), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(263), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [22376] = 3, + [23708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1156), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1265), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1156), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1356), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 4, + ACTIONS(1197), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1257), 30, + ACTIONS(1195), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -37140,1310 +38203,907 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1261), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1265), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1160), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22712] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - sym__special_character, - STATE(518), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1360), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22758] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 1, - sym__special_character, - STATE(653), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1360), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22804] = 19, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(57), 1, - sym_file_descriptor, - ACTIONS(935), 1, - sym_variable_name, - ACTIONS(1368), 1, - sym__special_character, - STATE(144), 1, - sym_command_name, - STATE(301), 1, - aux_sym__literal_repeat1, - STATE(560), 1, - sym_concatenation, - STATE(2600), 1, - sym_subscript, - ACTIONS(53), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(35), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(45), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1328), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(37), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(241), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [22878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1339), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1156), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23004] = 19, - ACTIONS(55), 1, - sym_comment, - ACTIONS(57), 1, - sym_file_descriptor, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, - anon_sym_BQUOTE, - ACTIONS(935), 1, - sym_variable_name, - ACTIONS(1370), 1, - sym__special_character, - STATE(178), 1, - sym_command_name, - STATE(417), 1, - aux_sym__literal_repeat1, - STATE(611), 1, - sym_concatenation, - STATE(2600), 1, - sym_subscript, - ACTIONS(109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(35), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(101), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1328), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(37), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(260), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [23078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1181), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1177), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1152), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1261), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1098), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1048), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1029), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23456] = 19, - ACTIONS(55), 1, - sym_comment, - ACTIONS(57), 1, - sym_file_descriptor, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, - anon_sym_BQUOTE, - ACTIONS(935), 1, - sym_variable_name, - ACTIONS(1370), 1, - sym__special_character, - STATE(156), 1, - sym_command_name, - STATE(417), 1, - aux_sym__literal_repeat1, - STATE(611), 1, - sym_concatenation, - STATE(2600), 1, - sym_subscript, - ACTIONS(109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(35), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(101), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1328), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(37), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(260), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [23530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1148), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1168), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(973), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(975), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1152), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1144), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1033), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1164), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 32, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [23950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1148), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1257), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24034] = 3, + [23750] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1183), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [23834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1374), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1151), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1236), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1236), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1179), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1240), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1035), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1244), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 32, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1179), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1035), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1167), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1167), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1226), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1127), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1123), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1191), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1031), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 4, sym_file_descriptor, sym__concat, sym_variable_name, @@ -38479,15 +39139,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24076] = 3, + [24758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 4, + ACTIONS(1155), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1191), 30, + ACTIONS(1157), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -38518,17 +39178,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24118] = 3, + [24800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 3, + ACTIONS(1185), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1144), 31, + ACTIONS(1183), 31, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -38557,18 +39217,18 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24160] = 5, + [24842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 1, + ACTIONS(1378), 1, sym__special_character, - STATE(487), 1, + STATE(495), 1, aux_sym__literal_repeat1, - ACTIONS(1204), 3, + ACTIONS(1207), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1202), 29, + ACTIONS(1209), 29, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -38598,15 +39258,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24206] = 3, + [24888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 4, + ACTIONS(1159), 4, sym_file_descriptor, sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1210), 30, + ACTIONS(1161), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -38637,522 +39297,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24248] = 3, + [24930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1156), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24290] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 1, - sym__special_character, - STATE(565), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1360), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1229), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1160), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1356), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1253), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1339), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1164), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1168), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1069), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1177), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1181), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 2, + ACTIONS(1033), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1098), 32, + ACTIONS(1031), 32, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -39185,14 +39336,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24840] = 3, + [24972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 3, + ACTIONS(1171), 4, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_LF, - ACTIONS(1198), 31, + ACTIONS(1173), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -39221,17 +39373,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24882] = 3, + [25014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 3, + ACTIONS(1359), 3, sym_file_descriptor, sym_variable_name, anon_sym_LF, - ACTIONS(1029), 31, + ACTIONS(1361), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -39263,14 +39414,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24924] = 3, + [25056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1125), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1265), 31, + ACTIONS(1123), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -39302,14 +39453,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24966] = 3, + [25098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 3, + ACTIONS(1228), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1257), 31, + ACTIONS(1226), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -39341,14 +39492,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25008] = 3, + [25140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 3, + ACTIONS(1257), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1187), 31, + ACTIONS(1255), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -39380,10 +39531,361 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25050] = 3, + [25182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 3, + ACTIONS(1177), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1175), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [25224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1127), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1374), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1244), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1240), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1195), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 3, sym_file_descriptor, sym__concat, anon_sym_LF, @@ -39419,719 +39921,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1210), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1249), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1241), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1237), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1233), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1249), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 1, - sym__special_character, - STATE(653), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1220), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1229), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1144), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1233), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1029), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1152), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1356), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1237), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25810] = 3, + [25602] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1050), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, anon_sym_LF, ACTIONS(1048), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1033), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -40160,587 +39957,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1241), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1245), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1029), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1029), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1029), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1339), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1356), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1069), 30, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1356), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1339), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1339), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 31, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [26429] = 3, + [25644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 3, + ACTIONS(1189), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - ACTIONS(1069), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1356), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 31, + ACTIONS(1187), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -40772,14 +39999,405 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [26552] = 3, + [25686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 3, + ACTIONS(1155), 3, sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1157), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1161), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1173), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1163), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1147), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1135), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1131), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_LF, - ACTIONS(1069), 30, + ACTIONS(1163), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -40810,22 +40428,906 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [26593] = 7, + [26148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1380), 1, + sym__special_character, + STATE(669), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1248), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1383), 1, sym_raw_string, - STATE(1411), 1, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1048), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1139), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1147), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1131), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1135), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1139), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_LF, + ACTIONS(1143), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1361), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1076), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1374), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1374), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1374), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1361), 30, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 31, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [26939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1361), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1076), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_variable_name, + anon_sym_LF, + ACTIONS(1048), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1048), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27103] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + anon_sym_DQUOTE, + ACTIONS(1387), 1, + sym_raw_string, + STATE(1486), 1, sym_string, - ACTIONS(1379), 5, + ACTIONS(1383), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(1385), 5, + ACTIONS(1389), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -40852,48 +41354,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [26642] = 15, + [27152] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1393), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, ACTIONS(1395), 1, - anon_sym_DOLLAR, + sym_raw_string, ACTIONS(1397), 1, - sym__special_character, - ACTIONS(1399), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1401), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1403), 1, - anon_sym_BQUOTE, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(1393), 2, + anon_sym_POUND, + STATE(1420), 1, + sym_string, + ACTIONS(535), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + sym_word, + ACTIONS(1391), 4, anon_sym_BANG, - sym_test_operator, - ACTIONS(1405), 2, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(1399), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(537), 15, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1387), 3, + [27204] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + anon_sym_DQUOTE, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(1411), 1, + sym__special_character, + ACTIONS(1413), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1415), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1417), 1, + anon_sym_BQUOTE, + STATE(1394), 1, + aux_sym__literal_repeat1, + ACTIONS(1407), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1419), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1401), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1389), 4, + ACTIONS(1403), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1356), 6, + STATE(1382), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1622), 7, + STATE(1560), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -40901,26 +41446,173 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [26706] = 10, + [27268] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(1385), 1, anon_sym_DQUOTE, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(1411), 1, + sym__special_character, ACTIONS(1413), 1, - sym_raw_string, - STATE(1530), 1, - sym_string, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1415), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1417), 1, + anon_sym_BQUOTE, + STATE(1394), 1, + aux_sym__literal_repeat1, ACTIONS(1407), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1419), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1401), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(1421), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1382), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1645), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [27332] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + anon_sym_DQUOTE, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(1411), 1, + sym__special_character, + ACTIONS(1413), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1415), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1417), 1, + anon_sym_BQUOTE, + STATE(1394), 1, + aux_sym__literal_repeat1, + ACTIONS(1407), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1419), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1401), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(1423), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1382), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1617), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [27396] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 1, + anon_sym_DQUOTE, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(1411), 1, + sym__special_character, + ACTIONS(1413), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1415), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1417), 1, + anon_sym_BQUOTE, + STATE(1394), 1, + aux_sym__literal_repeat1, + ACTIONS(1407), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1419), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1401), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(1425), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1382), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1570), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [27460] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1433), 1, + sym_raw_string, + STATE(1532), 1, + sym_string, + ACTIONS(1427), 2, anon_sym_BANG, anon_sym_DASH, - ACTIONS(1417), 2, + ACTIONS(1437), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(1409), 3, + ACTIONS(1429), 3, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(1415), 3, + ACTIONS(1435), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, @@ -40945,48 +41637,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [26760] = 15, + [27514] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1385), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, + ACTIONS(1405), 1, anon_sym_LPAREN, - ACTIONS(1395), 1, + ACTIONS(1409), 1, anon_sym_DOLLAR, - ACTIONS(1397), 1, + ACTIONS(1411), 1, sym__special_character, - ACTIONS(1399), 1, + ACTIONS(1413), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1401), 1, + ACTIONS(1415), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1417), 1, anon_sym_BQUOTE, - STATE(1388), 1, + STATE(1394), 1, aux_sym__literal_repeat1, - ACTIONS(1393), 2, + ACTIONS(1407), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1405), 2, + ACTIONS(1419), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1387), 3, + ACTIONS(1401), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1419), 4, + ACTIONS(1439), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1356), 6, + STATE(1382), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1524), 7, + STATE(1538), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -40994,48 +41686,48 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [26824] = 15, + [27578] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1385), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, + ACTIONS(1405), 1, anon_sym_LPAREN, - ACTIONS(1395), 1, + ACTIONS(1409), 1, anon_sym_DOLLAR, - ACTIONS(1397), 1, + ACTIONS(1411), 1, sym__special_character, - ACTIONS(1399), 1, + ACTIONS(1413), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1401), 1, + ACTIONS(1415), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1403), 1, + ACTIONS(1417), 1, anon_sym_BQUOTE, - STATE(1388), 1, + STATE(1394), 1, aux_sym__literal_repeat1, - ACTIONS(1393), 2, + ACTIONS(1407), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1405), 2, + ACTIONS(1419), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1387), 3, + ACTIONS(1401), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1421), 4, + ACTIONS(1441), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1356), 6, + STATE(1382), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1585), 7, + STATE(1641), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -41043,258 +41735,26 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [26888] = 15, + [27642] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1447), 1, anon_sym_DQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(1397), 1, - sym__special_character, - ACTIONS(1399), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1401), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1403), 1, - anon_sym_BQUOTE, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(1393), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1405), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1387), 3, + ACTIONS(1449), 1, sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1423), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1356), 6, + STATE(1852), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1623), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [26952] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 1, - anon_sym_DQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(1397), 1, - sym__special_character, - ACTIONS(1399), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1401), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1403), 1, - anon_sym_BQUOTE, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(1393), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1405), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1387), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1425), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1356), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1532), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [27016] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 1, - anon_sym_DQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(1397), 1, - sym__special_character, - ACTIONS(1399), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1401), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1403), 1, - anon_sym_BQUOTE, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(1393), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1405), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1387), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1427), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1356), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1581), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [27080] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 1, - anon_sym_DQUOTE, - ACTIONS(1433), 1, - sym_raw_string, - ACTIONS(1435), 1, - anon_sym_POUND, - STATE(1505), 1, - sym_string, - ACTIONS(535), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - sym_word, - ACTIONS(1429), 4, + ACTIONS(1443), 2, anon_sym_BANG, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(1437), 5, - aux_sym__simple_variable_name_token1, + ACTIONS(1453), 2, anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 15, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [27132] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1445), 1, - sym_raw_string, - STATE(1663), 1, - sym_string, - ACTIONS(1439), 2, - anon_sym_BANG, - anon_sym_DASH, - ACTIONS(1449), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1441), 3, + ACTIONS(1445), 3, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(1447), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(535), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - ACTIONS(537), 13, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [27184] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_raw_string, - STATE(1762), 1, - sym_string, - ACTIONS(1451), 2, - anon_sym_BANG, - anon_sym_DASH, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1453), 3, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(1459), 3, + ACTIONS(1451), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, @@ -41317,143 +41777,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [27236] = 17, - ACTIONS(55), 1, + [27694] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(1459), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1465), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, + ACTIONS(1461), 1, + sym_raw_string, + STATE(1681), 1, + sym_string, + ACTIONS(1455), 2, anon_sym_BANG, - ACTIONS(1471), 1, + anon_sym_DASH, + ACTIONS(1465), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(1457), 3, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(1463), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(535), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + ACTIONS(537), 13, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [27746] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1469), 1, + anon_sym_RBRACE, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, ACTIONS(1481), 1, - anon_sym_BQUOTE, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1491), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1475), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1483), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1421), 6, + STATE(1092), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1471), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1872), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [27301] = 17, - ACTIONS(3), 1, + [27811] = 17, + ACTIONS(55), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1489), 1, - anon_sym_RBRACE, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1459), 1, anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, ACTIONS(1501), 1, - anon_sym_POUND, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, + sym__special_character, ACTIONS(1505), 1, - anon_sym_SLASH, + anon_sym_DOLLAR_LBRACE, ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(1509), 1, anon_sym_BQUOTE, - STATE(1799), 1, + ACTIONS(1513), 1, + sym_test_operator, + ACTIONS(1515), 1, + sym_regex, + STATE(1676), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1503), 2, sym_raw_string, sym_ansii_c_string, ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1267), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1491), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, + STATE(1722), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [27366] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(1513), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1869), 7, + STATE(1897), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -41461,790 +41915,742 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [27431] = 17, + [27876] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1515), 1, + ACTIONS(1517), 1, anon_sym_RBRACE, - ACTIONS(1519), 1, - anon_sym_POUND, ACTIONS(1521), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(952), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1517), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27496] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1523), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1132), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1519), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [27941] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1525), 1, anon_sym_RBRACE, - ACTIONS(1527), 1, - anon_sym_POUND, ACTIONS(1529), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(954), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1525), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27561] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1531), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1131), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1527), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28006] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1533), 1, anon_sym_RBRACE, - ACTIONS(1535), 1, - anon_sym_POUND, ACTIONS(1537), 1, + anon_sym_POUND, + ACTIONS(1539), 1, anon_sym_SLASH, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(955), 2, + STATE(1130), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1533), 6, + ACTIONS(1535), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [27626] = 17, + [28071] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1539), 1, + ACTIONS(1541), 1, anon_sym_RBRACE, - ACTIONS(1543), 1, - anon_sym_POUND, ACTIONS(1545), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(957), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1541), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27691] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1547), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1129), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1543), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28136] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1549), 1, anon_sym_RBRACE, - ACTIONS(1551), 1, - anon_sym_POUND, ACTIONS(1553), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(961), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1549), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27756] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1555), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1127), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1551), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28201] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1541), 1, anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_POUND, + ACTIONS(1557), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1129), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1543), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28266] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, ACTIONS(1559), 1, - anon_sym_POUND, - ACTIONS(1561), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1193), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1557), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27821] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1539), 1, anon_sym_RBRACE, - ACTIONS(1543), 1, - anon_sym_POUND, ACTIONS(1563), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(957), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1541), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27886] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1565), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1124), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1561), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28331] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, anon_sym_RBRACE, - ACTIONS(1569), 1, - anon_sym_POUND, ACTIONS(1571), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(964), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1567), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27951] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1573), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1122), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1569), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28396] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1575), 1, anon_sym_RBRACE, - ACTIONS(1577), 1, - anon_sym_POUND, ACTIONS(1579), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(966), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1575), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28016] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1581), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1118), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1577), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28461] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1583), 1, anon_sym_RBRACE, - ACTIONS(1585), 1, - anon_sym_POUND, ACTIONS(1587), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(973), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1583), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28081] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1589), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1117), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1585), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28526] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1591), 1, anon_sym_RBRACE, - ACTIONS(1593), 1, - anon_sym_POUND, ACTIONS(1595), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(974), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1591), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28146] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1597), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1115), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1593), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28591] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1599), 1, anon_sym_RBRACE, - ACTIONS(1601), 1, - anon_sym_POUND, ACTIONS(1603), 1, + anon_sym_POUND, + ACTIONS(1605), 1, anon_sym_SLASH, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(975), 2, + STATE(1085), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1599), 6, + ACTIONS(1601), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [28211] = 17, + [28656] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1607), 1, anon_sym_RBRACE, - ACTIONS(1609), 1, - anon_sym_POUND, ACTIONS(1611), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1607), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28276] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1613), 1, - anon_sym_RBRACE, - ACTIONS(1617), 1, - anon_sym_POUND, - ACTIONS(1619), 1, anon_sym_SLASH, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1041), 2, + STATE(1113), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1615), 6, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [28341] = 17, + [28721] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1621), 1, + ACTIONS(1615), 1, anon_sym_RBRACE, - ACTIONS(1625), 1, + ACTIONS(1619), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym_regex, - STATE(1799), 1, + ACTIONS(1621), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(978), 2, + STATE(1083), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1623), 6, + ACTIONS(1617), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [28406] = 17, + [28786] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - ACTIONS(1609), 1, + ACTIONS(1627), 1, anon_sym_POUND, ACTIONS(1629), 1, - sym_regex, - STATE(1799), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(976), 2, + STATE(1081), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1607), 6, + ACTIONS(1625), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [28471] = 17, + [28851] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(1631), 1, anon_sym_RBRACE, @@ -42252,15 +42658,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1637), 1, sym_regex, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(981), 2, + STATE(1079), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(1633), 6, @@ -42270,10199 +42676,383 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [28536] = 17, + [28916] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1639), 1, + ACTIONS(1623), 1, anon_sym_RBRACE, - ACTIONS(1643), 1, + ACTIONS(1627), 1, anon_sym_POUND, + ACTIONS(1639), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1081), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1625), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28981] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1641), 1, + anon_sym_RBRACE, ACTIONS(1645), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1222), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1641), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28601] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_POUND, ACTIONS(1647), 1, - anon_sym_RBRACE, - ACTIONS(1651), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1178), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1649), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28666] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1655), 1, - anon_sym_RBRACE, - ACTIONS(1659), 1, - anon_sym_POUND, - ACTIONS(1661), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1040), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1657), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28731] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1663), 1, - anon_sym_RBRACE, - ACTIONS(1667), 1, - anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1039), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1665), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28796] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1671), 1, - anon_sym_RBRACE, - ACTIONS(1675), 1, - anon_sym_POUND, - ACTIONS(1677), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(984), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1673), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28861] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(1683), 1, - anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1038), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1681), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28926] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1691), 1, - anon_sym_POUND, - ACTIONS(1693), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1035), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1689), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28991] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1695), 1, - anon_sym_RBRACE, - ACTIONS(1699), 1, - anon_sym_POUND, - ACTIONS(1701), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(991), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1697), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29056] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(1683), 1, - anon_sym_POUND, - ACTIONS(1703), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1038), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1681), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29121] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1705), 1, - anon_sym_RBRACE, - ACTIONS(1709), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(992), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1707), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29186] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1713), 1, - anon_sym_RBRACE, - ACTIONS(1717), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1027), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1715), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29251] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1721), 1, - anon_sym_RBRACE, - ACTIONS(1725), 1, - anon_sym_POUND, - ACTIONS(1727), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(993), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1723), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29316] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1729), 1, - anon_sym_RBRACE, - ACTIONS(1733), 1, - anon_sym_POUND, - ACTIONS(1735), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1023), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29381] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_RBRACE, - ACTIONS(1741), 1, - anon_sym_POUND, - ACTIONS(1743), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(994), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1739), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29446] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(1745), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1889), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [29511] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(1747), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1885), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [29576] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1749), 1, - anon_sym_RBRACE, - ACTIONS(1753), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(997), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1751), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29641] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_RBRACE, - ACTIONS(1741), 1, - anon_sym_POUND, - ACTIONS(1757), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(994), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1739), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29706] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1759), 1, - anon_sym_RBRACE, - ACTIONS(1763), 1, - anon_sym_POUND, - ACTIONS(1765), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1004), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29771] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(1767), 1, - sym_regex, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1723), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [29836] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - sym_word, - ACTIONS(1771), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - ACTIONS(1791), 1, - sym_regex, - STATE(1644), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1666), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1882), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [29901] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1793), 1, - anon_sym_RBRACE, - ACTIONS(1797), 1, - anon_sym_POUND, - ACTIONS(1799), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1006), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1795), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29966] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1801), 1, - anon_sym_RBRACE, - ACTIONS(1805), 1, - anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1025), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1803), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30031] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1809), 1, - anon_sym_RBRACE, - ACTIONS(1813), 1, - anon_sym_POUND, - ACTIONS(1815), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1026), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1811), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30096] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1817), 1, - anon_sym_RBRACE, - ACTIONS(1821), 1, - anon_sym_POUND, - ACTIONS(1823), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1028), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1819), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30161] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1825), 1, - anon_sym_RBRACE, - ACTIONS(1829), 1, - anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1029), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1827), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30226] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1833), 1, - anon_sym_RBRACE, - ACTIONS(1837), 1, - anon_sym_POUND, - ACTIONS(1839), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1237), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1835), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30291] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1841), 1, - anon_sym_RBRACE, - ACTIONS(1845), 1, - anon_sym_POUND, - ACTIONS(1847), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1048), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1843), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30356] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1849), 1, - anon_sym_RBRACE, - ACTIONS(1853), 1, - anon_sym_POUND, - ACTIONS(1855), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1031), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1851), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30421] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1857), 1, - anon_sym_RBRACE, - ACTIONS(1861), 1, - anon_sym_POUND, - ACTIONS(1863), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1271), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1859), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30486] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1869), 1, - anon_sym_POUND, - ACTIONS(1871), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(943), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1867), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30551] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1873), 1, - anon_sym_RBRACE, - ACTIONS(1877), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(937), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1875), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30616] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1869), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(943), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1867), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30681] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1883), 1, - anon_sym_RBRACE, - ACTIONS(1887), 1, - anon_sym_POUND, - ACTIONS(1889), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1056), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1885), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30746] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1895), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(946), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1893), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30811] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1899), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_POUND, - ACTIONS(1905), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1235), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1901), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30876] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1639), 1, - anon_sym_RBRACE, - ACTIONS(1643), 1, - anon_sym_POUND, - ACTIONS(1907), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1222), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1641), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30941] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1909), 1, - anon_sym_RBRACE, - ACTIONS(1913), 1, - anon_sym_POUND, - ACTIONS(1915), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(915), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1911), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31006] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1917), 1, - anon_sym_RBRACE, - ACTIONS(1921), 1, - anon_sym_POUND, - ACTIONS(1923), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1107), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1919), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31071] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(1929), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1053), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1927), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31136] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1833), 1, - anon_sym_RBRACE, - ACTIONS(1837), 1, - anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1237), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1835), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31201] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_RBRACE, - ACTIONS(1939), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1054), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1937), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31266] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_RBRACE, - ACTIONS(1947), 1, - anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1238), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1945), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31331] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1951), 1, - anon_sym_RBRACE, - ACTIONS(1955), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1217), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1953), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31396] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1959), 1, - anon_sym_RBRACE, - ACTIONS(1963), 1, - anon_sym_POUND, - ACTIONS(1965), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(927), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1961), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31461] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1825), 1, - anon_sym_RBRACE, - ACTIONS(1829), 1, - anon_sym_POUND, - ACTIONS(1967), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1029), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1827), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31526] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1969), 1, - anon_sym_RBRACE, - ACTIONS(1973), 1, - anon_sym_POUND, - ACTIONS(1975), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1059), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1971), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31591] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(1981), 1, - anon_sym_POUND, - ACTIONS(1983), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1084), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1979), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31656] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(1989), 1, - anon_sym_POUND, - ACTIONS(1991), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(932), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1987), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31721] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1993), 1, - anon_sym_RBRACE, - ACTIONS(1997), 1, - anon_sym_POUND, - ACTIONS(1999), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1051), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1995), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31786] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(1929), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1053), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1927), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31851] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2003), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - anon_sym_POUND, - ACTIONS(2009), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(942), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2005), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31916] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2011), 1, - anon_sym_RBRACE, - ACTIONS(2015), 1, - anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1092), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2013), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31981] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2019), 1, - anon_sym_RBRACE, - ACTIONS(2023), 1, - anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1055), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2021), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32046] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_RBRACE, - ACTIONS(2031), 1, - anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1057), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2029), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32111] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2035), 1, - anon_sym_RBRACE, - ACTIONS(2039), 1, - anon_sym_POUND, - ACTIONS(2041), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(940), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2037), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32176] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2003), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(942), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2005), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32241] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2045), 1, - anon_sym_RBRACE, - ACTIONS(2049), 1, - anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(944), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2047), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32306] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(2057), 1, - anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1093), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2055), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32371] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2065), 1, - anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1098), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2063), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32436] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1100), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2071), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32501] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2077), 1, - anon_sym_RBRACE, - ACTIONS(2081), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1240), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2079), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32566] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2085), 1, - anon_sym_RBRACE, - ACTIONS(2089), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(951), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2087), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32631] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1100), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2071), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32696] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2095), 1, - anon_sym_RBRACE, - ACTIONS(2099), 1, - anon_sym_POUND, - ACTIONS(2101), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1121), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2097), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32761] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(2109), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1129), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2105), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32826] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2111), 1, - anon_sym_RBRACE, - ACTIONS(2115), 1, - anon_sym_POUND, - ACTIONS(2117), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1138), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2113), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32891] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2119), 1, - anon_sym_RBRACE, - ACTIONS(2123), 1, - anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1139), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2121), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32956] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2127), 1, - anon_sym_RBRACE, - ACTIONS(2131), 1, - anon_sym_POUND, - ACTIONS(2133), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1140), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2129), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33021] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(2139), 1, - anon_sym_POUND, - ACTIONS(2141), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1141), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2137), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33086] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2143), 1, - anon_sym_RBRACE, - ACTIONS(2147), 1, - anon_sym_POUND, - ACTIONS(2149), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1143), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2145), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33151] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(2139), 1, - anon_sym_POUND, - ACTIONS(2151), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1141), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2137), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33216] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2153), 1, - anon_sym_RBRACE, - ACTIONS(2157), 1, - anon_sym_POUND, - ACTIONS(2159), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1146), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2155), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33281] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_RBRACE, - ACTIONS(2165), 1, - anon_sym_POUND, - ACTIONS(2167), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1073), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2163), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33346] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(2173), 1, - anon_sym_POUND, - ACTIONS(2175), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1153), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2171), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33411] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2177), 1, - anon_sym_RBRACE, - ACTIONS(2181), 1, - anon_sym_POUND, - ACTIONS(2183), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1200), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2179), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33476] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2185), 1, - anon_sym_RBRACE, - ACTIONS(2189), 1, - anon_sym_POUND, - ACTIONS(2191), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1212), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2187), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33541] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2193), 1, - anon_sym_RBRACE, - ACTIONS(2197), 1, - anon_sym_POUND, - ACTIONS(2199), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(918), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2195), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33606] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(2205), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1214), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2203), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33671] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2209), 1, - anon_sym_RBRACE, - ACTIONS(2213), 1, - anon_sym_POUND, - ACTIONS(2215), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1058), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2211), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33736] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2217), 1, - anon_sym_RBRACE, - ACTIONS(2221), 1, - anon_sym_POUND, - ACTIONS(2223), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(953), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2219), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33801] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(2229), 1, - anon_sym_POUND, - ACTIONS(2231), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1230), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2227), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33866] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2233), 1, - anon_sym_RBRACE, - ACTIONS(2237), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1218), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2235), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33931] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2241), 1, - anon_sym_RBRACE, - ACTIONS(2245), 1, - anon_sym_POUND, - ACTIONS(2247), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1065), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2243), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33996] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2249), 1, - anon_sym_RBRACE, - ACTIONS(2253), 1, - anon_sym_POUND, - ACTIONS(2255), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1221), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2251), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34061] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2233), 1, - anon_sym_RBRACE, - ACTIONS(2237), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1218), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2235), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34126] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2259), 1, - anon_sym_RBRACE, - ACTIONS(2263), 1, - anon_sym_POUND, - ACTIONS(2265), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1242), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2261), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34191] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(2271), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1245), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2269), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34256] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2275), 1, - anon_sym_RBRACE, - ACTIONS(2279), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1264), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2277), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34321] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2283), 1, - anon_sym_RBRACE, - ACTIONS(2287), 1, - anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1265), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2285), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34386] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2291), 1, - anon_sym_RBRACE, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1266), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2293), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34451] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(2305), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(949), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2301), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34516] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(2311), 1, - anon_sym_POUND, - ACTIONS(2313), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1269), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2309), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34581] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_RBRACE, - ACTIONS(2319), 1, - anon_sym_POUND, - ACTIONS(2321), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1067), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2317), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34646] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1489), 1, - anon_sym_RBRACE, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1501), 1, - anon_sym_POUND, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2323), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1267), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1491), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34711] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2325), 1, - anon_sym_RBRACE, - ACTIONS(2329), 1, - anon_sym_POUND, - ACTIONS(2331), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1273), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2327), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34776] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(2333), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1875), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [34841] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(2339), 1, - anon_sym_POUND, - ACTIONS(2341), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1280), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2337), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34906] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(2347), 1, - anon_sym_POUND, - ACTIONS(2349), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(917), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2345), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34971] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1387), 1, - sym_word, - ACTIONS(1393), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(2351), 1, - anon_sym_LPAREN, - ACTIONS(2353), 1, - sym__special_character, - ACTIONS(2355), 1, - anon_sym_DQUOTE, - ACTIONS(2359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, - anon_sym_BQUOTE, - ACTIONS(2367), 1, - sym_test_operator, - ACTIONS(2369), 1, - sym_regex, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(2357), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(2365), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1356), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1555), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [35036] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2371), 1, - anon_sym_RBRACE, - ACTIONS(2375), 1, - anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(919), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2373), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35101] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2379), 1, - anon_sym_RBRACE, - ACTIONS(2383), 1, - anon_sym_POUND, - ACTIONS(2385), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(931), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2381), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35166] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2387), 1, - anon_sym_RBRACE, - ACTIONS(2391), 1, - anon_sym_POUND, - ACTIONS(2393), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(956), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2389), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35231] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2395), 1, - anon_sym_RBRACE, - ACTIONS(2399), 1, - anon_sym_POUND, - ACTIONS(2401), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(959), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2397), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35296] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2387), 1, - anon_sym_RBRACE, - ACTIONS(2391), 1, - anon_sym_POUND, - ACTIONS(2403), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(956), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2389), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35361] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2405), 1, - anon_sym_RBRACE, - ACTIONS(2409), 1, - anon_sym_POUND, - ACTIONS(2411), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(986), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2407), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35426] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2413), 1, - anon_sym_RBRACE, - ACTIONS(2417), 1, - anon_sym_POUND, - ACTIONS(2419), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1061), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2415), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35491] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2421), 1, - anon_sym_RBRACE, - ACTIONS(2425), 1, - anon_sym_POUND, - ACTIONS(2427), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1135), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2423), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35556] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2429), 1, - anon_sym_RBRACE, - ACTIONS(2433), 1, - anon_sym_POUND, - ACTIONS(2435), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1220), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2431), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35621] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2437), 1, - anon_sym_RBRACE, - ACTIONS(2441), 1, - anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1249), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2439), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35686] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(2445), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1880), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [35751] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(2447), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1874), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [35816] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2449), 1, - anon_sym_RBRACE, - ACTIONS(2453), 1, - anon_sym_POUND, - ACTIONS(2455), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2451), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35881] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2457), 1, - anon_sym_RBRACE, - ACTIONS(2461), 1, - anon_sym_POUND, - ACTIONS(2463), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1216), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2459), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35946] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2465), 1, - anon_sym_RBRACE, - ACTIONS(2469), 1, - anon_sym_POUND, - ACTIONS(2471), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1255), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2467), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36011] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2473), 1, - anon_sym_RBRACE, - ACTIONS(2477), 1, - anon_sym_POUND, - ACTIONS(2479), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1160), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2475), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36076] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2481), 1, - anon_sym_RBRACE, - ACTIONS(2485), 1, - anon_sym_POUND, - ACTIONS(2487), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1070), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2483), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36141] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2489), 1, - anon_sym_RBRACE, - ACTIONS(2493), 1, - anon_sym_POUND, - ACTIONS(2495), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1257), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2491), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36206] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2497), 1, - anon_sym_RBRACE, - ACTIONS(2501), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1213), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2499), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36271] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2465), 1, - anon_sym_RBRACE, - ACTIONS(2469), 1, - anon_sym_POUND, - ACTIONS(2505), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1255), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2467), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36336] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2507), 1, - anon_sym_RBRACE, - ACTIONS(2511), 1, - anon_sym_POUND, - ACTIONS(2513), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1306), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2509), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36401] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_RBRACE, - ACTIONS(2165), 1, - anon_sym_POUND, - ACTIONS(2515), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1073), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2163), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36466] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(2521), 1, - anon_sym_POUND, - ACTIONS(2523), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1304), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2519), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36531] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2525), 1, - anon_sym_RBRACE, - ACTIONS(2529), 1, - anon_sym_POUND, - ACTIONS(2531), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1299), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2527), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36596] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2533), 1, - anon_sym_RBRACE, - ACTIONS(2537), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1074), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2535), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36661] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2541), 1, - anon_sym_RBRACE, - ACTIONS(2545), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1076), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2543), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36726] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2549), 1, - anon_sym_RBRACE, - ACTIONS(2553), 1, - anon_sym_POUND, - ACTIONS(2555), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1077), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2551), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36791] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2557), 1, - anon_sym_RBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2563), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1211), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2559), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36856] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(2569), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1089), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2567), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36921] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2573), 1, - anon_sym_RBRACE, - ACTIONS(2577), 1, - anon_sym_POUND, - ACTIONS(2579), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1209), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2575), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36986] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2557), 1, - anon_sym_RBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1211), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2559), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37051] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2583), 1, - anon_sym_RBRACE, - ACTIONS(2587), 1, - anon_sym_POUND, - ACTIONS(2589), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1206), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2585), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37116] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(2595), 1, - anon_sym_POUND, - ACTIONS(2597), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1204), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2593), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37181] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2599), 1, - anon_sym_RBRACE, - ACTIONS(2603), 1, - anon_sym_POUND, - ACTIONS(2605), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1094), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2601), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37246] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2607), 1, - anon_sym_RBRACE, - ACTIONS(2611), 1, - anon_sym_POUND, - ACTIONS(2613), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1018), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2609), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37311] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2615), 1, - anon_sym_RBRACE, - ACTIONS(2619), 1, - anon_sym_POUND, - ACTIONS(2621), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1021), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2617), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37376] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(2627), 1, - anon_sym_POUND, - ACTIONS(2629), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1102), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2625), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37441] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2631), 1, - anon_sym_RBRACE, - ACTIONS(2635), 1, - anon_sym_POUND, - ACTIONS(2637), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1097), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2633), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37506] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2639), 1, - anon_sym_RBRACE, - ACTIONS(2643), 1, - anon_sym_POUND, - ACTIONS(2645), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1199), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2641), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37571] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(2627), 1, - anon_sym_POUND, - ACTIONS(2647), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1102), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2625), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37636] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2649), 1, - anon_sym_RBRACE, - ACTIONS(2653), 1, - anon_sym_POUND, - ACTIONS(2655), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1103), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2651), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37701] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2657), 1, - anon_sym_RBRACE, - ACTIONS(2661), 1, - anon_sym_POUND, - ACTIONS(2663), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1104), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2659), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37766] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - ACTIONS(2665), 1, - anon_sym_RPAREN_RPAREN, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1903), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [37831] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2671), 1, - anon_sym_POUND, - ACTIONS(2673), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1105), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2669), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37896] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2675), 1, - anon_sym_RBRACE, - ACTIONS(2679), 1, - anon_sym_POUND, - ACTIONS(2681), 1, sym_regex, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1111), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(2677), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [37961] = 17, + [29046] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(1607), 1, anon_sym_RBRACE, - ACTIONS(2687), 1, + ACTIONS(1611), 1, anon_sym_POUND, - ACTIONS(2689), 1, + ACTIONS(1649), 1, sym_regex, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1113), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(2685), 6, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [38026] = 17, + [29111] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2691), 1, - anon_sym_RBRACE, - ACTIONS(2695), 1, - anon_sym_POUND, - ACTIONS(2697), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1197), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2693), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38091] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2699), 1, - anon_sym_RBRACE, - ACTIONS(2703), 1, - anon_sym_POUND, - ACTIONS(2705), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1298), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2701), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38156] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2707), 1, - anon_sym_RBRACE, - ACTIONS(2711), 1, - anon_sym_POUND, - ACTIONS(2713), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1297), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2709), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38221] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2715), 1, - anon_sym_RBRACE, - ACTIONS(2719), 1, - anon_sym_POUND, - ACTIONS(2721), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1296), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2717), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38286] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2723), 1, - anon_sym_RBRACE, - ACTIONS(2727), 1, - anon_sym_POUND, - ACTIONS(2729), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1079), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2725), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38351] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2731), 1, - anon_sym_RBRACE, - ACTIONS(2735), 1, - anon_sym_POUND, - ACTIONS(2737), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1294), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2733), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38416] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2739), 1, - anon_sym_RBRACE, - ACTIONS(2743), 1, - anon_sym_POUND, - ACTIONS(2745), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1075), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2741), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38481] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2723), 1, - anon_sym_RBRACE, - ACTIONS(2727), 1, - anon_sym_POUND, - ACTIONS(2747), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1079), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2725), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38546] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2749), 1, - anon_sym_RBRACE, - ACTIONS(2753), 1, - anon_sym_POUND, - ACTIONS(2755), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1082), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2751), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38611] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2757), 1, - anon_sym_RBRACE, - ACTIONS(2761), 1, - anon_sym_POUND, - ACTIONS(2763), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1194), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2759), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38676] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2715), 1, - anon_sym_RBRACE, - ACTIONS(2719), 1, - anon_sym_POUND, - ACTIONS(2765), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1296), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2717), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38741] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2767), 1, - anon_sym_RBRACE, - ACTIONS(2771), 1, - anon_sym_POUND, - ACTIONS(2773), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1291), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2769), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38806] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(2779), 1, - anon_sym_POUND, - ACTIONS(2781), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1192), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2777), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38871] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2783), 1, - anon_sym_RBRACE, - ACTIONS(2787), 1, - anon_sym_POUND, - ACTIONS(2789), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1288), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2785), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38936] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2791), 1, - anon_sym_RBRACE, - ACTIONS(2795), 1, - anon_sym_POUND, - ACTIONS(2797), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1278), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2793), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39001] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(2803), 1, - anon_sym_POUND, - ACTIONS(2805), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1190), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2801), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39066] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2807), 1, - anon_sym_RBRACE, - ACTIONS(2811), 1, - anon_sym_POUND, - ACTIONS(2813), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1277), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2809), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39131] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2815), 1, - anon_sym_RBRACE, - ACTIONS(2819), 1, - anon_sym_POUND, - ACTIONS(2821), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1276), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2817), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39196] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(2779), 1, - anon_sym_POUND, - ACTIONS(2823), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1192), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2777), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39261] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2825), 1, - anon_sym_RBRACE, - ACTIONS(2829), 1, - anon_sym_POUND, - ACTIONS(2831), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1186), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2827), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39326] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2833), 1, - anon_sym_RBRACE, - ACTIONS(2837), 1, - anon_sym_POUND, - ACTIONS(2839), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1260), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2835), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39391] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2841), 1, - anon_sym_RBRACE, - ACTIONS(2845), 1, - anon_sym_POUND, - ACTIONS(2847), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1258), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2843), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39456] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(2853), 1, - anon_sym_POUND, - ACTIONS(2855), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1184), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2851), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39521] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2833), 1, - anon_sym_RBRACE, - ACTIONS(2837), 1, - anon_sym_POUND, - ACTIONS(2857), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1260), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2835), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39586] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2859), 1, - anon_sym_RBRACE, - ACTIONS(2863), 1, - anon_sym_POUND, - ACTIONS(2865), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1177), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2861), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39651] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2867), 1, - anon_sym_RBRACE, - ACTIONS(2871), 1, - anon_sym_POUND, - ACTIONS(2873), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1120), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2869), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39716] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(2879), 1, - anon_sym_POUND, - ACTIONS(2881), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1195), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2877), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39781] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2883), 1, - anon_sym_RBRACE, - ACTIONS(2887), 1, - anon_sym_POUND, - ACTIONS(2889), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1251), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2885), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39846] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2891), 1, - anon_sym_RBRACE, - ACTIONS(2895), 1, - anon_sym_POUND, - ACTIONS(2897), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1176), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2893), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39911] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2899), 1, - anon_sym_RBRACE, - ACTIONS(2903), 1, - anon_sym_POUND, - ACTIONS(2905), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1254), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2901), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39976] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1767), 1, - sym_regex, - ACTIONS(2907), 1, - anon_sym_BANG, - ACTIONS(2909), 1, - sym__special_character, - ACTIONS(2911), 1, - sym_test_operator, - STATE(1643), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1723), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [40041] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2913), 1, - anon_sym_RBRACE, - ACTIONS(2917), 1, - anon_sym_POUND, - ACTIONS(2919), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1126), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2915), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40106] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2921), 1, - anon_sym_RBRACE, - ACTIONS(2925), 1, - anon_sym_POUND, - ACTIONS(2927), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1127), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2923), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40171] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_RBRACE, - ACTIONS(2933), 1, - anon_sym_POUND, - ACTIONS(2935), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1175), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2931), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40236] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2937), 1, - anon_sym_RBRACE, - ACTIONS(2941), 1, - anon_sym_POUND, - ACTIONS(2943), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1118), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2939), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40301] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2945), 1, - anon_sym_RBRACE, - ACTIONS(2949), 1, - anon_sym_POUND, - ACTIONS(2951), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1174), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2947), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40366] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2953), 1, - anon_sym_RBRACE, - ACTIONS(2957), 1, - anon_sym_POUND, - ACTIONS(2959), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1172), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2955), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40431] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2965), 1, - anon_sym_POUND, - ACTIONS(2967), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1248), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2963), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40496] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2867), 1, - anon_sym_RBRACE, - ACTIONS(2871), 1, - anon_sym_POUND, - ACTIONS(2969), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1120), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2869), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40561] = 17, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2971), 1, - sym_word, - ACTIONS(2973), 1, - anon_sym_LPAREN, - ACTIONS(2975), 1, - anon_sym_BANG, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2979), 1, - sym__special_character, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(2991), 1, - sym_test_operator, - ACTIONS(2993), 1, - sym_regex, - STATE(1631), 1, - aux_sym__literal_repeat1, - ACTIONS(2981), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1742), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1894), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [40626] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2995), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, - anon_sym_POUND, - ACTIONS(3001), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1046), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2997), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40691] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2945), 1, - anon_sym_RBRACE, - ACTIONS(2949), 1, - anon_sym_POUND, - ACTIONS(3003), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1174), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2947), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40756] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3005), 1, - anon_sym_RBRACE, - ACTIONS(3009), 1, - anon_sym_POUND, - ACTIONS(3011), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1241), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3007), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40821] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3013), 1, - anon_sym_RBRACE, - ACTIONS(3017), 1, - anon_sym_POUND, - ACTIONS(3019), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1169), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3015), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40886] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3021), 1, - anon_sym_RBRACE, - ACTIONS(3025), 1, - anon_sym_POUND, - ACTIONS(3027), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1167), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3023), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40951] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3029), 1, - anon_sym_RBRACE, - ACTIONS(3033), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3031), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41016] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3037), 1, - anon_sym_RBRACE, - ACTIONS(3041), 1, - anon_sym_POUND, - ACTIONS(3043), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1123), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3039), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41081] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3045), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, - anon_sym_POUND, - ACTIONS(3051), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1124), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3047), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41146] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3053), 1, - anon_sym_RBRACE, - ACTIONS(3057), 1, - anon_sym_POUND, - ACTIONS(3059), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1147), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3055), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41211] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3061), 1, - anon_sym_RBRACE, - ACTIONS(3065), 1, - anon_sym_POUND, - ACTIONS(3067), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1149), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3063), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41276] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3069), 1, - anon_sym_RBRACE, - ACTIONS(3073), 1, - anon_sym_POUND, - ACTIONS(3075), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1156), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3071), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41341] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(3081), 1, - anon_sym_POUND, - ACTIONS(3083), 1, - sym_regex, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1154), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3079), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41406] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3069), 1, - anon_sym_RBRACE, - ACTIONS(3073), 1, - anon_sym_POUND, - ACTIONS(3085), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1156), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3071), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41471] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3087), 1, - anon_sym_RBRACE, - ACTIONS(3091), 1, - anon_sym_POUND, - ACTIONS(3093), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1157), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3089), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41536] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3095), 1, - anon_sym_RBRACE, - ACTIONS(3099), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - anon_sym_SLASH, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1158), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3097), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41601] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - sym_word, - ACTIONS(1771), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - STATE(1644), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1666), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1882), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41663] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3103), 1, - anon_sym_RBRACE, - ACTIONS(3107), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1136), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3105), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41725] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3109), 1, - anon_sym_RBRACE, - ACTIONS(3113), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(947), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3111), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41787] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41849] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1387), 1, - sym_word, - ACTIONS(1393), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(2351), 1, - anon_sym_LPAREN, - ACTIONS(2353), 1, - sym__special_character, - ACTIONS(2355), 1, - anon_sym_DQUOTE, - ACTIONS(2359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, - anon_sym_BQUOTE, - ACTIONS(2367), 1, - sym_test_operator, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(2357), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(2365), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1356), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1610), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41911] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2395), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41973] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1873), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42035] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2387), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42097] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1387), 1, - sym_word, - ACTIONS(1393), 1, - anon_sym_BANG, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(2351), 1, - anon_sym_LPAREN, - ACTIONS(2353), 1, - sym__special_character, - ACTIONS(2355), 1, - anon_sym_DQUOTE, - ACTIONS(2359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, - anon_sym_BQUOTE, - ACTIONS(2367), 1, - sym_test_operator, - STATE(1388), 1, - aux_sym__literal_repeat1, - ACTIONS(2357), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(2365), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1356), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1555), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42159] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - sym_word, - ACTIONS(1771), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - STATE(1644), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1666), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1900), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42221] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3119), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42283] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1651), 1, + anon_sym_RBRACE, + ACTIONS(1655), 1, + anon_sym_POUND, + ACTIONS(1657), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1475), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1483), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1421), 6, + STATE(1076), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1653), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29176] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1659), 1, + anon_sym_RBRACE, + ACTIONS(1663), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1108), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1661), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29241] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1667), 1, + anon_sym_RBRACE, + ACTIONS(1671), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1106), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1669), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29306] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1677), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1928), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [29371] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(1699), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -52477,3532 +43067,662 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [42345] = 16, + [29436] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3121), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42407] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, + sym_word, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1886), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42469] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3123), 1, + ACTIONS(1701), 1, anon_sym_RBRACE, - STATE(1799), 1, + ACTIONS(1705), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1102), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1703), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [42531] = 16, + [29501] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42593] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2971), 1, - sym_word, - ACTIONS(2973), 1, - anon_sym_LPAREN, - ACTIONS(2975), 1, - anon_sym_BANG, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2979), 1, - sym__special_character, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(2991), 1, - sym_test_operator, - STATE(1631), 1, - aux_sym__literal_repeat1, - ACTIONS(2981), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1742), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1870), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42655] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(2907), 1, - anon_sym_BANG, - ACTIONS(2909), 1, - sym__special_character, - ACTIONS(2911), 1, - sym_test_operator, - STATE(1643), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1871), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42717] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3125), 1, - anon_sym_RBRACE, - ACTIONS(3129), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(922), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3127), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42779] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2405), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42841] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3131), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42903] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3131), 1, - anon_sym_RBRACE, - ACTIONS(3135), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(924), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3133), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [42965] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(2303), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(949), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2301), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43027] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - sym_word, - ACTIONS(1771), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - STATE(1644), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1666), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1905), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [43089] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1833), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [43151] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3137), 1, + ACTIONS(1709), 1, anon_sym_RBRACE, - STATE(1799), 1, + ACTIONS(1713), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1032), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1711), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [43213] = 16, + [29566] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3137), 1, - anon_sym_RBRACE, - ACTIONS(3141), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(948), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3139), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43275] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1959), 1, - anon_sym_RBRACE, - ACTIONS(1963), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(927), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1961), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43337] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3143), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43399] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3143), 1, - anon_sym_RBRACE, - ACTIONS(3147), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(926), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3145), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43461] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1959), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43523] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43585] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43647] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3149), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43709] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1857), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43771] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3151), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43833] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3153), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43895] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3155), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43957] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3155), 1, - anon_sym_RBRACE, - ACTIONS(3159), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(945), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3157), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44019] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2003), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44081] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1547), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44143] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2035), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44205] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1539), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44267] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1565), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44329] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2413), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44391] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1573), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44453] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3161), 1, - anon_sym_RBRACE, - ACTIONS(3165), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1080), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3163), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44515] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3161), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44577] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3167), 1, - anon_sym_RBRACE, - ACTIONS(3171), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(968), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3169), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44639] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3167), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44701] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1573), 1, - anon_sym_RBRACE, - ACTIONS(1577), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(966), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1575), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44763] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3173), 1, - anon_sym_RBRACE, - ACTIONS(3177), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(969), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3175), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44825] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3173), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44887] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3179), 1, - anon_sym_RBRACE, - ACTIONS(3183), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(970), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3181), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44949] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3179), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45011] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2413), 1, - anon_sym_RBRACE, - ACTIONS(2417), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1061), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2415), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45073] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3185), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45135] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3187), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45197] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3189), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45259] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(2907), 1, - anon_sym_BANG, - ACTIONS(2909), 1, - sym__special_character, - ACTIONS(2911), 1, - sym_test_operator, - STATE(1643), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1898), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [45321] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1909), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [45383] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1621), 1, + ACTIONS(1717), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1721), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1723), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1074), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1719), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [45445] = 16, + [29631] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1605), 1, + ACTIONS(1725), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1729), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1731), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1100), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1727), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [45507] = 16, + [29696] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1631), 1, + ACTIONS(1733), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1737), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1739), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1143), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1735), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [45569] = 16, + [29761] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1671), 1, + ACTIONS(1741), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1745), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1747), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45631] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3191), 1, - anon_sym_RBRACE, - ACTIONS(3195), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(985), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3193), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45693] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3191), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45755] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1671), 1, - anon_sym_RBRACE, - ACTIONS(1675), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(984), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1673), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45817] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3197), 1, - anon_sym_RBRACE, - ACTIONS(3201), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(988), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3199), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45879] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45941] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(3207), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(990), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3205), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46003] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3209), 1, - anon_sym_RBRACE, - ACTIONS(3213), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1099), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3211), 6, + ACTIONS(1743), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [46065] = 16, + [29826] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3203), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46127] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46189] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3209), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46251] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - sym_word, - ACTIONS(1771), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - STATE(1644), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1666), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1896), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [46313] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3217), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46375] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, + sym_word, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1723), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [46437] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46499] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, ACTIONS(1749), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1753), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1755), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1097), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1751), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [46561] = 16, + [29891] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1737), 1, + ACTIONS(1741), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1745), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1757), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1099), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1743), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [46623] = 16, + [29956] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(1759), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(1763), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1765), 1, + anon_sym_SLASH, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1067), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(1761), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [46685] = 16, + [30021] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1793), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46747] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, + sym_word, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1876), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [46809] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3221), 1, - anon_sym_RBRACE, - ACTIONS(3225), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1007), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3223), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46871] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3221), 1, + ACTIONS(1767), 1, anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46933] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, - sym_word, ACTIONS(1771), 1, - anon_sym_LPAREN, + anon_sym_POUND, ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - STATE(1644), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1787), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1666), 6, + STATE(1141), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1769), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1899), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [46995] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1473), 1, - sym__special_character, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1884), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [47057] = 16, + [30086] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(1779), 1, + anon_sym_POUND, + ACTIONS(1781), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1161), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1777), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30151] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1733), 1, + anon_sym_RBRACE, + ACTIONS(1737), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1143), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1735), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30216] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(1789), 1, + anon_sym_POUND, + ACTIONS(1791), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1066), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1787), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30281] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(1793), 1, anon_sym_RBRACE, ACTIONS(1797), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1799), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1006), 2, + STATE(1094), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(1795), 6, @@ -56012,512 +43732,1494 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [47119] = 16, + [30346] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3227), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47181] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47243] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3231), 1, - anon_sym_RBRACE, - ACTIONS(3235), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1008), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3233), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47305] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3231), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47367] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3237), 1, - anon_sym_RBRACE, - ACTIONS(3241), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1009), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3239), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47429] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3237), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47491] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3243), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47553] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3245), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47615] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3247), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47677] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3249), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [47739] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, + sym_word, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1801), 1, + anon_sym_RBRACE, + ACTIONS(1805), 1, + anon_sym_POUND, + ACTIONS(1807), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1475), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1483), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1421), 6, + STATE(1138), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1803), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1867), 7, + [30411] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1809), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_POUND, + ACTIONS(1815), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1136), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1811), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30476] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1817), 1, + anon_sym_RBRACE, + ACTIONS(1821), 1, + anon_sym_POUND, + ACTIONS(1823), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1087), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1819), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30541] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1825), 1, + anon_sym_RBRACE, + ACTIONS(1829), 1, + anon_sym_POUND, + ACTIONS(1831), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1157), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1827), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30606] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1833), 1, + anon_sym_RBRACE, + ACTIONS(1837), 1, + anon_sym_POUND, + ACTIONS(1839), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1190), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1835), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30671] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1841), 1, + anon_sym_RBRACE, + ACTIONS(1845), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1065), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1843), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30736] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1849), 1, + anon_sym_RBRACE, + ACTIONS(1853), 1, + anon_sym_POUND, + ACTIONS(1855), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1144), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1851), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30801] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1857), 1, + anon_sym_RBRACE, + ACTIONS(1861), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1145), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1859), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30866] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1865), 1, + anon_sym_RBRACE, + ACTIONS(1869), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1146), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1867), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30931] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(1877), 1, + anon_sym_POUND, + ACTIONS(1879), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1151), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1875), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30996] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1881), 1, + anon_sym_RBRACE, + ACTIONS(1885), 1, + anon_sym_POUND, + ACTIONS(1887), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1153), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1883), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31061] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1889), 1, + anon_sym_RBRACE, + ACTIONS(1893), 1, + anon_sym_POUND, + ACTIONS(1895), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1158), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1891), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31126] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1897), 1, + anon_sym_RBRACE, + ACTIONS(1901), 1, + anon_sym_POUND, + ACTIONS(1903), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1101), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1899), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31191] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1889), 1, + anon_sym_RBRACE, + ACTIONS(1893), 1, + anon_sym_POUND, + ACTIONS(1905), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1158), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1891), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31256] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1907), 1, + anon_sym_RBRACE, + ACTIONS(1911), 1, + anon_sym_POUND, + ACTIONS(1913), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1064), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1909), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31321] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1915), 1, + anon_sym_RBRACE, + ACTIONS(1919), 1, + anon_sym_POUND, + ACTIONS(1921), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1160), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1917), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31386] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1923), 1, + anon_sym_RBRACE, + ACTIONS(1927), 1, + anon_sym_POUND, + ACTIONS(1929), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1163), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1925), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31451] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1931), 1, + anon_sym_RBRACE, + ACTIONS(1935), 1, + anon_sym_POUND, + ACTIONS(1937), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1165), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1933), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31516] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1939), 1, + anon_sym_RBRACE, + ACTIONS(1943), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1062), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1941), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31581] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1907), 1, + anon_sym_RBRACE, + ACTIONS(1911), 1, + anon_sym_POUND, + ACTIONS(1947), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1064), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1909), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31646] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1949), 1, + anon_sym_RBRACE, + ACTIONS(1953), 1, + anon_sym_POUND, + ACTIONS(1955), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1169), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1951), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31711] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1957), 1, + anon_sym_RBRACE, + ACTIONS(1961), 1, + anon_sym_POUND, + ACTIONS(1963), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1171), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1959), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31776] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1965), 1, + anon_sym_RBRACE, + ACTIONS(1969), 1, + anon_sym_POUND, + ACTIONS(1971), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1059), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1967), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31841] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1973), 1, + anon_sym_RBRACE, + ACTIONS(1977), 1, + anon_sym_POUND, + ACTIONS(1979), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1176), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1975), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31906] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1981), 1, + anon_sym_RBRACE, + ACTIONS(1985), 1, + anon_sym_POUND, + ACTIONS(1987), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1174), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1983), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31971] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1973), 1, + anon_sym_RBRACE, + ACTIONS(1977), 1, + anon_sym_POUND, + ACTIONS(1989), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1176), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1975), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32036] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1991), 1, + anon_sym_RBRACE, + ACTIONS(1995), 1, + anon_sym_POUND, + ACTIONS(1997), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1177), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1993), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32101] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(2003), 1, + anon_sym_POUND, + ACTIONS(2005), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1057), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2001), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32166] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_RBRACE, + ACTIONS(2011), 1, + anon_sym_POUND, + ACTIONS(2013), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1178), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2009), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32231] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2015), 1, + anon_sym_RBRACE, + ACTIONS(2019), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1179), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2017), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32296] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2023), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1904), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -56525,38 +45227,7606 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [47801] = 16, - ACTIONS(55), 1, + [32361] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1769), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1771), 1, - anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1777), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1781), 1, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(1789), 1, - sym_test_operator, - STATE(1644), 1, + ACTIONS(2025), 1, + anon_sym_RBRACE, + ACTIONS(2029), 1, + anon_sym_POUND, + ACTIONS(2031), 1, + sym_regex, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1787), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1666), 6, + STATE(1183), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2027), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32426] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2033), 1, + anon_sym_RBRACE, + ACTIONS(2037), 1, + anon_sym_POUND, + ACTIONS(2039), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1185), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2035), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32491] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2041), 1, + anon_sym_RBRACE, + ACTIONS(2045), 1, + anon_sym_POUND, + ACTIONS(2047), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1191), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2043), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32556] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2049), 1, + anon_sym_RBRACE, + ACTIONS(2053), 1, + anon_sym_POUND, + ACTIONS(2055), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1053), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2051), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32621] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2057), 1, + anon_sym_RBRACE, + ACTIONS(2061), 1, + anon_sym_POUND, + ACTIONS(2063), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1188), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2059), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32686] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2065), 1, + anon_sym_RBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1052), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2067), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32751] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2073), 1, + anon_sym_RBRACE, + ACTIONS(2077), 1, + anon_sym_POUND, + ACTIONS(2079), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1051), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2075), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32816] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(2085), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1050), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2083), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32881] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(2093), 1, + anon_sym_POUND, + ACTIONS(2095), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1048), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2091), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32946] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(2085), 1, + anon_sym_POUND, + ACTIONS(2097), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1050), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2083), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33011] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2099), 1, + anon_sym_RBRACE, + ACTIONS(2103), 1, + anon_sym_POUND, + ACTIONS(2105), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1044), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2101), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33076] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2107), 1, + anon_sym_RBRACE, + ACTIONS(2111), 1, + anon_sym_POUND, + ACTIONS(2113), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1042), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2109), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33141] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2115), 1, + anon_sym_RBRACE, + ACTIONS(2119), 1, + anon_sym_POUND, + ACTIONS(2121), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1036), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2117), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33206] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2123), 1, + anon_sym_RBRACE, + ACTIONS(2127), 1, + anon_sym_POUND, + ACTIONS(2129), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1035), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2125), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33271] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2131), 1, + anon_sym_RBRACE, + ACTIONS(2135), 1, + anon_sym_POUND, + ACTIONS(2137), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1034), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2133), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33336] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2139), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1915), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [33401] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2141), 1, + anon_sym_RBRACE, + ACTIONS(2145), 1, + anon_sym_POUND, + ACTIONS(2147), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1030), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2143), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33466] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1709), 1, + anon_sym_RBRACE, + ACTIONS(1713), 1, + anon_sym_POUND, + ACTIONS(2149), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1032), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1711), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33531] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2151), 1, + anon_sym_RBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1027), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2153), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33596] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(2163), 1, + anon_sym_POUND, + ACTIONS(2165), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1025), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2161), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33661] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1833), 1, + anon_sym_RBRACE, + ACTIONS(1837), 1, + anon_sym_POUND, + ACTIONS(2167), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1190), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1835), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33726] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2169), 1, + anon_sym_RBRACE, + ACTIONS(2173), 1, + anon_sym_POUND, + ACTIONS(2175), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1021), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2171), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33791] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2177), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1887), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [33856] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2179), 1, + anon_sym_RBRACE, + ACTIONS(2183), 1, + anon_sym_POUND, + ACTIONS(2185), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1020), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2181), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33921] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2187), 1, + anon_sym_RBRACE, + ACTIONS(2191), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(935), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2189), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33986] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2195), 1, + anon_sym_RBRACE, + ACTIONS(2199), 1, + anon_sym_POUND, + ACTIONS(2201), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1019), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2197), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34051] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2203), 1, + anon_sym_RBRACE, + ACTIONS(2207), 1, + anon_sym_POUND, + ACTIONS(2209), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1192), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2205), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34116] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2211), 1, + anon_sym_RBRACE, + ACTIONS(2215), 1, + anon_sym_POUND, + ACTIONS(2217), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1018), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2213), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34181] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2219), 1, + anon_sym_RBRACE, + ACTIONS(2223), 1, + anon_sym_POUND, + ACTIONS(2225), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1193), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2221), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34246] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2227), 1, + anon_sym_RBRACE, + ACTIONS(2231), 1, + anon_sym_POUND, + ACTIONS(2233), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1197), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2229), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34311] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2235), 1, + anon_sym_RBRACE, + ACTIONS(2239), 1, + anon_sym_POUND, + ACTIONS(2241), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1016), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2237), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34376] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2211), 1, + anon_sym_RBRACE, + ACTIONS(2215), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1018), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2213), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34441] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2245), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1013), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2247), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34506] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + anon_sym_POUND, + ACTIONS(2259), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1011), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2255), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34571] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2261), 1, + anon_sym_RBRACE, + ACTIONS(2265), 1, + anon_sym_POUND, + ACTIONS(2267), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1004), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2263), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34636] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2269), 1, + anon_sym_RBRACE, + ACTIONS(2273), 1, + anon_sym_POUND, + ACTIONS(2275), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1003), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2271), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34701] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2277), 1, + anon_sym_RBRACE, + ACTIONS(2281), 1, + anon_sym_POUND, + ACTIONS(2283), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1199), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2279), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34766] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2285), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + anon_sym_POUND, + ACTIONS(2291), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1204), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2287), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34831] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2293), 1, + anon_sym_RBRACE, + ACTIONS(2297), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1002), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2295), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34896] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2301), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + anon_sym_POUND, + ACTIONS(2307), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1001), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2303), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34961] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2309), 1, + anon_sym_RBRACE, + ACTIONS(2313), 1, + anon_sym_POUND, + ACTIONS(2315), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(999), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2311), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35026] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2301), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + anon_sym_POUND, + ACTIONS(2317), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1001), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2303), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35091] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2319), 1, + anon_sym_RBRACE, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(2325), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1202), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2321), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35156] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2327), 1, + anon_sym_RBRACE, + ACTIONS(2331), 1, + anon_sym_POUND, + ACTIONS(2333), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(995), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2329), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35221] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(2339), 1, + anon_sym_POUND, + ACTIONS(2341), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(993), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2337), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35286] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2343), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(2349), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(987), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2345), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35351] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2351), 1, + anon_sym_RBRACE, + ACTIONS(2355), 1, + anon_sym_POUND, + ACTIONS(2357), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(986), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2353), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35416] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2359), 1, + anon_sym_RBRACE, + ACTIONS(2363), 1, + anon_sym_POUND, + ACTIONS(2365), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(985), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2361), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35481] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2367), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, + anon_sym_POUND, + ACTIONS(2373), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(983), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2369), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35546] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2375), 1, + anon_sym_RBRACE, + ACTIONS(2379), 1, + anon_sym_POUND, + ACTIONS(2381), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(981), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2377), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35611] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2367), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, + anon_sym_POUND, + ACTIONS(2383), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(983), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2369), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35676] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2385), 1, + anon_sym_RBRACE, + ACTIONS(2389), 1, + anon_sym_POUND, + ACTIONS(2391), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1069), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2387), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35741] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_POUND, + ACTIONS(2399), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(978), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2395), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35806] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(2405), 1, + anon_sym_POUND, + ACTIONS(2407), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2403), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35871] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2285), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + anon_sym_POUND, + ACTIONS(2409), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1204), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2287), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35936] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2411), 1, + anon_sym_RBRACE, + ACTIONS(2415), 1, + anon_sym_POUND, + ACTIONS(2417), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1205), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2413), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36001] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2419), 1, + anon_sym_RBRACE, + ACTIONS(2423), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1206), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2421), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36066] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2427), 1, + anon_sym_RBRACE, + ACTIONS(2431), 1, + anon_sym_POUND, + ACTIONS(2433), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1082), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2429), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36131] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2435), 1, + anon_sym_RBRACE, + ACTIONS(2439), 1, + anon_sym_POUND, + ACTIONS(2441), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1207), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2437), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36196] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_RBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1214), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2445), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36261] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2451), 1, + anon_sym_RBRACE, + ACTIONS(2455), 1, + anon_sym_POUND, + ACTIONS(2457), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1216), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2453), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36326] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2459), 1, + anon_sym_RBRACE, + ACTIONS(2463), 1, + anon_sym_POUND, + ACTIONS(2465), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(972), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2461), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36391] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2467), 1, + anon_sym_RBRACE, + ACTIONS(2471), 1, + anon_sym_POUND, + ACTIONS(2473), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1221), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2469), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36456] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2385), 1, + anon_sym_RBRACE, + ACTIONS(2389), 1, + anon_sym_POUND, + ACTIONS(2475), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1069), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2387), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36521] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2477), 1, + anon_sym_RBRACE, + ACTIONS(2481), 1, + anon_sym_POUND, + ACTIONS(2483), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1068), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2479), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36586] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2485), 1, + anon_sym_RBRACE, + ACTIONS(2489), 1, + anon_sym_POUND, + ACTIONS(2491), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1219), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2487), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36651] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(2497), 1, + anon_sym_POUND, + ACTIONS(2499), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(971), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2495), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36716] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2501), 1, + anon_sym_RBRACE, + ACTIONS(2505), 1, + anon_sym_POUND, + ACTIONS(2507), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(970), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2503), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36781] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2467), 1, + anon_sym_RBRACE, + ACTIONS(2471), 1, + anon_sym_POUND, + ACTIONS(2509), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1221), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2469), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36846] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1401), 1, + sym_word, + ACTIONS(1407), 1, + anon_sym_BANG, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym__special_character, + ACTIONS(2515), 1, + anon_sym_DQUOTE, + ACTIONS(2519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2521), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2523), 1, + anon_sym_BQUOTE, + ACTIONS(2527), 1, + sym_test_operator, + ACTIONS(2529), 1, + sym_regex, + STATE(1394), 1, + aux_sym__literal_repeat1, + ACTIONS(2517), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(2525), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1382), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1636), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [36911] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2531), 1, + anon_sym_RBRACE, + ACTIONS(2535), 1, + anon_sym_POUND, + ACTIONS(2537), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1222), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2533), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [36976] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2539), 1, + anon_sym_RBRACE, + ACTIONS(2543), 1, + anon_sym_POUND, + ACTIONS(2545), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2541), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37041] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(2551), 1, + anon_sym_POUND, + ACTIONS(2553), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1224), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2549), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37106] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(2559), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1228), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2557), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37171] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2563), 1, + anon_sym_RBRACE, + ACTIONS(2567), 1, + anon_sym_POUND, + ACTIONS(2569), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1234), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2565), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37236] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(2575), 1, + anon_sym_POUND, + ACTIONS(2577), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(969), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2573), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37301] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(2583), 1, + anon_sym_POUND, + ACTIONS(2585), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2581), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37366] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2587), 1, + anon_sym_RBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1238), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2589), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37431] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(2583), 1, + anon_sym_POUND, + ACTIONS(2595), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2581), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37496] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2597), 1, + anon_sym_RBRACE, + ACTIONS(2601), 1, + anon_sym_POUND, + ACTIONS(2603), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1243), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2599), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37561] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2605), 1, + anon_sym_RBRACE, + ACTIONS(2609), 1, + anon_sym_POUND, + ACTIONS(2611), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1244), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2607), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37626] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(2617), 1, + anon_sym_POUND, + ACTIONS(2619), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1246), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2615), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37691] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(2625), 1, + anon_sym_POUND, + ACTIONS(2627), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1252), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2623), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37756] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2629), 1, + anon_sym_RBRACE, + ACTIONS(2633), 1, + anon_sym_POUND, + ACTIONS(2635), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1254), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2631), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37821] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(2641), 1, + anon_sym_POUND, + ACTIONS(2643), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1259), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2639), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37886] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2645), 1, + anon_sym_RBRACE, + ACTIONS(2649), 1, + anon_sym_POUND, + ACTIONS(2651), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1257), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2647), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37951] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(2641), 1, + anon_sym_POUND, + ACTIONS(2653), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1259), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2639), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38016] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2655), 1, + anon_sym_RBRACE, + ACTIONS(2659), 1, + anon_sym_POUND, + ACTIONS(2661), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1260), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2657), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38081] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(2667), 1, + anon_sym_POUND, + ACTIONS(2669), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1261), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2665), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38146] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2671), 1, + anon_sym_RBRACE, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2677), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1263), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2673), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38211] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2679), 1, + anon_sym_RBRACE, + ACTIONS(2683), 1, + anon_sym_POUND, + ACTIONS(2685), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1270), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2681), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38276] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2687), 1, + anon_sym_RBRACE, + ACTIONS(2691), 1, + anon_sym_POUND, + ACTIONS(2693), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(967), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2689), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38341] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(2699), 1, + anon_sym_POUND, + ACTIONS(2701), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1272), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2697), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38406] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(2575), 1, + anon_sym_POUND, + ACTIONS(2703), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(969), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2573), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38471] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2705), 1, + anon_sym_RBRACE, + ACTIONS(2709), 1, + anon_sym_POUND, + ACTIONS(2711), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(964), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2707), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38536] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(2717), 1, + anon_sym_POUND, + ACTIONS(2719), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(962), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2715), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38601] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2721), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1919), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [38666] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2723), 1, + anon_sym_RBRACE, + ACTIONS(2727), 1, + anon_sym_POUND, + ACTIONS(2729), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1295), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2725), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38731] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2731), 1, + anon_sym_RBRACE, + ACTIONS(2735), 1, + anon_sym_POUND, + ACTIONS(2737), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1279), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2733), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38796] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2723), 1, + anon_sym_RBRACE, + ACTIONS(2727), 1, + anon_sym_POUND, + ACTIONS(2739), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1295), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2725), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38861] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2741), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1918), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [38926] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2743), 1, + anon_sym_RBRACE, + ACTIONS(2747), 1, + anon_sym_POUND, + ACTIONS(2749), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1296), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2745), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38991] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2751), 1, + anon_sym_RPAREN_RPAREN, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1917), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [39056] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2753), 1, + anon_sym_RBRACE, + ACTIONS(2757), 1, + anon_sym_POUND, + ACTIONS(2759), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1297), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2755), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39121] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2761), 1, + anon_sym_RBRACE, + ACTIONS(2765), 1, + anon_sym_POUND, + ACTIONS(2767), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1299), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2763), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39186] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + ACTIONS(2769), 1, + sym_regex, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1745), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [39251] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2771), 1, + anon_sym_RBRACE, + ACTIONS(2775), 1, + anon_sym_POUND, + ACTIONS(2777), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1305), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2773), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39316] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2779), 1, + anon_sym_RBRACE, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1307), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2781), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39381] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2787), 1, + anon_sym_RBRACE, + ACTIONS(2791), 1, + anon_sym_POUND, + ACTIONS(2793), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1312), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2789), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39446] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2795), 1, + anon_sym_RBRACE, + ACTIONS(2799), 1, + anon_sym_POUND, + ACTIONS(2801), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1310), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2797), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39511] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2787), 1, + anon_sym_RBRACE, + ACTIONS(2791), 1, + anon_sym_POUND, + ACTIONS(2803), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1312), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2789), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39576] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2805), 1, + anon_sym_RBRACE, + ACTIONS(2809), 1, + anon_sym_POUND, + ACTIONS(2811), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1313), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2807), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39641] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2813), 1, + anon_sym_RBRACE, + ACTIONS(2817), 1, + anon_sym_POUND, + ACTIONS(2819), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1314), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2815), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39706] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2821), 1, + anon_sym_RBRACE, + ACTIONS(2825), 1, + anon_sym_POUND, + ACTIONS(2827), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1315), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2823), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39771] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2829), 1, + anon_sym_RBRACE, + ACTIONS(2833), 1, + anon_sym_POUND, + ACTIONS(2835), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1037), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2831), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39836] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2837), 1, + anon_sym_RBRACE, + ACTIONS(2841), 1, + anon_sym_POUND, + ACTIONS(2843), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(984), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2839), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39901] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2845), 1, + anon_sym_RBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + ACTIONS(2851), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1302), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2847), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39966] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2853), 1, + anon_sym_RBRACE, + ACTIONS(2857), 1, + anon_sym_POUND, + ACTIONS(2859), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1298), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2855), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40031] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2861), 1, + anon_sym_RBRACE, + ACTIONS(2865), 1, + anon_sym_POUND, + ACTIONS(2867), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1290), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2863), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40096] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2869), 1, + anon_sym_RBRACE, + ACTIONS(2873), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1292), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2871), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40161] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2877), 1, + anon_sym_RBRACE, + ACTIONS(2881), 1, + anon_sym_POUND, + ACTIONS(2883), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1156), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2879), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40226] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2885), 1, + anon_sym_RBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1289), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2887), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40291] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2893), 1, + anon_sym_RBRACE, + ACTIONS(2897), 1, + anon_sym_POUND, + ACTIONS(2899), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1288), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2895), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40356] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2901), 1, + anon_sym_RBRACE, + ACTIONS(2905), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1287), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2903), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40421] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2909), 1, + anon_sym_RBRACE, + ACTIONS(2913), 1, + anon_sym_POUND, + ACTIONS(2915), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1282), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2911), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40486] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2917), 1, + anon_sym_RBRACE, + ACTIONS(2921), 1, + anon_sym_POUND, + ACTIONS(2923), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1277), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2919), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40551] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2925), 1, + anon_sym_RBRACE, + ACTIONS(2929), 1, + anon_sym_POUND, + ACTIONS(2931), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1262), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2927), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40616] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2933), 1, + anon_sym_RBRACE, + ACTIONS(2937), 1, + anon_sym_POUND, + ACTIONS(2939), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1267), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2935), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40681] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2925), 1, + anon_sym_RBRACE, + ACTIONS(2929), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1262), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2927), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40746] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2943), 1, + anon_sym_RBRACE, + ACTIONS(2947), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1250), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2945), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40811] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2951), 1, + anon_sym_RBRACE, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(2957), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1247), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2953), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40876] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2959), 1, + anon_sym_RBRACE, + ACTIONS(2963), 1, + anon_sym_POUND, + ACTIONS(2965), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1245), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2961), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40941] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2967), 1, + anon_sym_RBRACE, + ACTIONS(2971), 1, + anon_sym_POUND, + ACTIONS(2973), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2969), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41006] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2975), 1, + anon_sym_RBRACE, + ACTIONS(2979), 1, + anon_sym_POUND, + ACTIONS(2981), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1213), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2977), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41071] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1045), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2985), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41136] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2991), 1, + anon_sym_RBRACE, + ACTIONS(2995), 1, + anon_sym_POUND, + ACTIONS(2997), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1114), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2993), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41201] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2999), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1045), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2985), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41266] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3005), 1, + anon_sym_POUND, + ACTIONS(3007), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1039), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3003), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41331] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3009), 1, + anon_sym_RBRACE, + ACTIONS(3013), 1, + anon_sym_POUND, + ACTIONS(3015), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1033), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3011), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41396] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3017), 1, + anon_sym_RBRACE, + ACTIONS(3021), 1, + anon_sym_POUND, + ACTIONS(3023), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1007), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3019), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41461] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3025), 1, + anon_sym_RBRACE, + ACTIONS(3029), 1, + anon_sym_POUND, + ACTIONS(3031), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(959), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3027), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41526] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3033), 1, + anon_sym_RBRACE, + ACTIONS(3037), 1, + anon_sym_POUND, + ACTIONS(3039), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(951), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3035), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41591] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3041), 1, + anon_sym_RBRACE, + ACTIONS(3045), 1, + anon_sym_POUND, + ACTIONS(3047), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(939), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3043), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41656] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3049), 1, + anon_sym_RBRACE, + ACTIONS(3053), 1, + anon_sym_POUND, + ACTIONS(3055), 1, + sym_regex, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(941), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3051), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41721] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3041), 1, + anon_sym_RBRACE, + ACTIONS(3045), 1, + anon_sym_POUND, + ACTIONS(3057), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(939), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3043), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41786] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3059), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, + anon_sym_POUND, + ACTIONS(3065), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(938), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3061), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41851] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(2769), 1, + sym_regex, + ACTIONS(3067), 1, + anon_sym_BANG, + ACTIONS(3069), 1, + sym__special_character, + ACTIONS(3071), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1745), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [41916] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3073), 1, + anon_sym_RBRACE, + ACTIONS(3077), 1, + anon_sym_POUND, + ACTIONS(3079), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(937), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3075), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41981] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2861), 1, + anon_sym_RBRACE, + ACTIONS(2865), 1, + anon_sym_POUND, + ACTIONS(3081), 1, + anon_sym_SLASH, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1290), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2863), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42046] = 17, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3083), 1, + sym_word, + ACTIONS(3085), 1, + anon_sym_LPAREN, + ACTIONS(3087), 1, + anon_sym_BANG, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3091), 1, + sym__special_character, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(3103), 1, + sym_test_operator, + ACTIONS(3105), 1, + sym_regex, + STATE(1682), 1, + aux_sym__literal_repeat1, + ACTIONS(3093), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1926), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42111] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3107), 1, + anon_sym_RBRACE, + ACTIONS(3111), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1150), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3109), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42173] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3113), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42235] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3083), 1, + sym_word, + ACTIONS(3085), 1, + anon_sym_LPAREN, + ACTIONS(3087), 1, + anon_sym_BANG, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3091), 1, + sym__special_character, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(3103), 1, + sym_test_operator, + STATE(1682), 1, + aux_sym__literal_repeat1, + ACTIONS(3093), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1900), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42297] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3083), 1, + sym_word, + ACTIONS(3085), 1, + anon_sym_LPAREN, + ACTIONS(3087), 1, + anon_sym_BANG, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3091), 1, + sym__special_character, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(3103), 1, + sym_test_operator, + STATE(1682), 1, + aux_sym__literal_repeat1, + ACTIONS(3093), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1926), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42359] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3083), 1, + sym_word, + ACTIONS(3085), 1, + anon_sym_LPAREN, + ACTIONS(3087), 1, + anon_sym_BANG, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3091), 1, + sym__special_character, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(3103), 1, + sym_test_operator, + STATE(1682), 1, + aux_sym__literal_repeat1, + ACTIONS(3093), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1882), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42421] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1920), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42483] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1927), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42545] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3083), 1, + sym_word, + ACTIONS(3085), 1, + anon_sym_LPAREN, + ACTIONS(3087), 1, + anon_sym_BANG, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3091), 1, + sym__special_character, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(3103), 1, + sym_test_operator, + STATE(1682), 1, + aux_sym__literal_repeat1, + ACTIONS(3093), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1910), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [42607] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(3067), 1, + anon_sym_BANG, + ACTIONS(3069), 1, + sym__special_character, + ACTIONS(3071), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -56571,45 +52841,45 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [47863] = 16, + [42669] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(1431), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1675), 1, sym_word, - ACTIONS(1467), 1, + ACTIONS(1679), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, + ACTIONS(1683), 1, anon_sym_DOLLAR, - ACTIONS(1477), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(2907), 1, + ACTIONS(3067), 1, anon_sym_BANG, - ACTIONS(2909), 1, + ACTIONS(3069), 1, sym__special_character, - ACTIONS(2911), 1, + ACTIONS(3071), 1, sym_test_operator, - STATE(1643), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - ACTIONS(1475), 2, + ACTIONS(1687), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1483), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1421), 6, + STATE(1502), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1888), 7, + STATE(1745), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -56617,45 +52887,45 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [47925] = 16, + [42731] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1459), 1, anon_sym_DQUOTE, - ACTIONS(2971), 1, + ACTIONS(1493), 1, sym_word, - ACTIONS(2973), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(2975), 1, + ACTIONS(1497), 1, anon_sym_BANG, - ACTIONS(2977), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(2979), 1, + ACTIONS(1501), 1, sym__special_character, - ACTIONS(2983), 1, + ACTIONS(1505), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, + ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, + ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(2991), 1, + ACTIONS(1513), 1, sym_test_operator, - STATE(1631), 1, + STATE(1676), 1, aux_sym__literal_repeat1, - ACTIONS(2981), 2, + ACTIONS(1503), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(2989), 2, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1742), 6, + STATE(1722), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1873), 7, + STATE(1896), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -56663,1096 +52933,38 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [47987] = 16, - ACTIONS(55), 1, + [42793] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1469), 1, - anon_sym_BANG, - ACTIONS(1471), 1, - anon_sym_DOLLAR, + sym_word, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1907), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [48049] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48111] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3253), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48173] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3255), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48235] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3257), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48297] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3255), 1, - anon_sym_RBRACE, - ACTIONS(3261), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1001), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3259), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48359] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3263), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48421] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3263), 1, - anon_sym_RBRACE, - ACTIONS(3267), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1002), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3265), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48483] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3269), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48545] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_RBRACE, - ACTIONS(3273), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1016), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3271), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48607] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1849), 1, + ACTIONS(3049), 1, anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48669] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1825), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48731] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3275), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48793] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1969), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48855] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48917] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3277), 1, - anon_sym_RBRACE, - ACTIONS(3281), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1086), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3279), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48979] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3277), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49041] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(2907), 1, - anon_sym_BANG, - ACTIONS(2909), 1, - sym__special_character, - ACTIONS(2911), 1, - sym_test_operator, - STATE(1643), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1650), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [49103] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3275), 1, - anon_sym_RBRACE, - ACTIONS(3285), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1017), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3283), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49165] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1729), 1, - anon_sym_RBRACE, - ACTIONS(1733), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1023), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1731), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49227] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3287), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49289] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3287), 1, - anon_sym_RBRACE, - ACTIONS(3291), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1019), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3289), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49351] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(1981), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1979), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49413] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1729), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, ACTIONS(3115), 6, anon_sym_EQ, anon_sym_DASH, @@ -57760,4597 +52972,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [49475] = 16, - ACTIONS(3), 1, + [42855] = 16, + ACTIONS(55), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1431), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1713), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49537] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, + ACTIONS(1675), 1, sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49599] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49661] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3293), 1, - anon_sym_RBRACE, - ACTIONS(3297), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1087), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3295), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49723] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3299), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49785] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49847] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3303), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49909] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3305), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49971] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3305), 1, - anon_sym_RBRACE, - ACTIONS(3309), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1043), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3307), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50033] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3311), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50095] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3311), 1, - anon_sym_RBRACE, - ACTIONS(3315), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1044), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3313), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50157] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2995), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1046), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2997), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50219] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3317), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50281] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3317), 1, - anon_sym_RBRACE, - ACTIONS(3321), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1045), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3319), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50343] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2995), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50405] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1555), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50467] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1841), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50529] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1639), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50591] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50653] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1993), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50715] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3293), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50777] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3323), 1, - anon_sym_RBRACE, - ACTIONS(3327), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1125), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3325), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50839] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3323), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50901] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50963] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3331), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51025] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3333), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51087] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3335), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51149] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3335), 1, - anon_sym_RBRACE, - ACTIONS(3339), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1062), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3337), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51211] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3341), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51273] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3341), 1, - anon_sym_RBRACE, - ACTIONS(3345), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1063), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3343), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51335] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2241), 1, - anon_sym_RBRACE, - ACTIONS(2245), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1065), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2243), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51397] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3347), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51459] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_RBRACE, - ACTIONS(3351), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1064), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3349), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51521] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2607), 1, - anon_sym_RBRACE, - ACTIONS(2611), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1018), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2609), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51583] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2241), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51645] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51707] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3353), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51769] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2161), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51831] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2481), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51893] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3353), 1, - anon_sym_RBRACE, - ACTIONS(3357), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1010), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3355), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51955] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2607), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52017] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3359), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52079] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3361), 1, - anon_sym_RBRACE, - ACTIONS(3365), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1090), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3363), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52141] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2615), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52203] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52265] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3361), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52327] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3369), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52389] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3371), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52451] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3373), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52513] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3375), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52575] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3377), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52637] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3379), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52699] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3377), 1, - anon_sym_RBRACE, - ACTIONS(3383), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1083), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3381), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52761] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1917), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52823] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52885] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3385), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52947] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3385), 1, - anon_sym_RBRACE, - ACTIONS(3389), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1085), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3387), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53009] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(2569), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1089), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2567), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53071] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3391), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53133] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2095), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53195] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3393), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53257] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53319] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_RBRACE, - ACTIONS(3397), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1088), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3395), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53381] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53443] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2599), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53505] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53567] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2631), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53629] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3399), 1, - anon_sym_RBRACE, - ACTIONS(3403), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1133), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3401), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53691] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3399), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53753] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3405), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53815] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53877] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3409), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53939] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3411), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54001] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3411), 1, - anon_sym_RBRACE, - ACTIONS(3415), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1108), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3413), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54063] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3417), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54125] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3417), 1, - anon_sym_RBRACE, - ACTIONS(3421), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1109), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3419), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54187] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(2107), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1129), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2105), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2675), 1, - anon_sym_RBRACE, - ACTIONS(2679), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1111), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2677), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54311] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3423), 1, - anon_sym_RBRACE, - ACTIONS(3427), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1134), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3425), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54373] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3429), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54435] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3429), 1, - anon_sym_RBRACE, - ACTIONS(3433), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1110), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3431), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54497] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2675), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54559] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3423), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54621] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2683), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54683] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2867), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54745] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2937), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54807] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3435), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54869] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2723), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54931] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2739), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [54993] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3437), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55055] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3103), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55117] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55179] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3441), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55241] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55303] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3445), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55365] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1685), 1, sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3447), 1, - anon_sym_RBRACE, - STATE(1799), 1, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1687), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, + STATE(1502), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [55427] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2489), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1779), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55489] = 16, + [42917] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3449), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55551] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_word, ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, + sym_word, + ACTIONS(1473), 1, anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(2907), 1, - anon_sym_BANG, - ACTIONS(2909), 1, - sym__special_character, - ACTIONS(2911), 1, - sym_test_operator, - STATE(1643), 1, - aux_sym__literal_repeat1, - ACTIONS(1475), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(1723), 7, - sym__expression, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [55613] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, + ACTIONS(3041), 1, anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -62360,43 +53064,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [55675] = 16, + [42979] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2135), 1, + ACTIONS(3033), 1, anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -62406,1515 +53110,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [55737] = 16, + [43041] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2153), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55799] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55861] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3451), 1, - anon_sym_RBRACE, - ACTIONS(3455), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1159), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3453), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55923] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3451), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [55985] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(2173), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1153), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2171), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56047] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3457), 1, - anon_sym_RBRACE, - ACTIONS(3461), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1161), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3459), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56109] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3457), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56171] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3463), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56233] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3463), 1, - anon_sym_RBRACE, - ACTIONS(3467), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1130), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3465), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56295] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3469), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56357] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3469), 1, - anon_sym_RBRACE, - ACTIONS(3473), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1131), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3471), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56419] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3053), 1, - anon_sym_RBRACE, - ACTIONS(3057), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1147), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3055), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56481] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3475), 1, - anon_sym_RBRACE, - ACTIONS(3479), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1162), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3477), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56543] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3475), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56605] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3481), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56667] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3481), 1, - anon_sym_RBRACE, - ACTIONS(3485), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1132), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3483), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56729] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3053), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56791] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3061), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56853] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3069), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56915] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3487), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [56977] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57039] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3489), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57101] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57163] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3493), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57225] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57287] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3497), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57349] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57411] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57473] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3501), 1, - anon_sym_RBRACE, - ACTIONS(3505), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1164), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3503), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57535] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3507), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57597] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3507), 1, - anon_sym_RBRACE, - ACTIONS(3511), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1165), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3509), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57659] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3021), 1, - anon_sym_RBRACE, ACTIONS(3025), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1167), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3023), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [57721] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, + anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - ACTIONS(3513), 1, - anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -63924,89 +53156,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [57783] = 16, + [43103] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3513), 1, + ACTIONS(3119), 1, anon_sym_RBRACE, - ACTIONS(3517), 1, + ACTIONS(3123), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1166), 2, + STATE(988), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3515), 6, + ACTIONS(3121), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [57845] = 16, + [43165] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3021), 1, - anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3119), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -64016,696 +53248,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [57907] = 16, + [43227] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3013), 1, + ACTIONS(3025), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3029), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(959), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(3027), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [57969] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2945), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58031] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2953), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58093] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2899), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58155] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3519), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58217] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3521), 1, - anon_sym_RBRACE, - ACTIONS(3525), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1128), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3523), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58279] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3527), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58341] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3529), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58403] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3531), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58465] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3533), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58527] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3533), 1, - anon_sym_RBRACE, - ACTIONS(3537), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1181), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3535), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58589] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3539), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58651] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3539), 1, - anon_sym_RBRACE, - ACTIONS(3543), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1182), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3541), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58713] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(2853), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1184), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2851), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58775] = 16, + [43289] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1443), 1, + ACTIONS(1431), 1, anon_sym_DQUOTE, - ACTIONS(1769), 1, + ACTIONS(1675), 1, sym_word, - ACTIONS(1771), 1, + ACTIONS(1679), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1775), 1, + ACTIONS(1683), 1, anon_sym_DOLLAR, - ACTIONS(1777), 1, - sym__special_character, - ACTIONS(1781), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, + ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(1789), 1, + ACTIONS(3067), 1, + anon_sym_BANG, + ACTIONS(3069), 1, + sym__special_character, + ACTIONS(3071), 1, sym_test_operator, - STATE(1644), 1, + STATE(1744), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1687), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1787), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1666), 6, + STATE(1502), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1877), 7, + STATE(1758), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -64713,1188 +53347,544 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [58837] = 16, + [43351] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3545), 1, + ACTIONS(3125), 1, anon_sym_RBRACE, - STATE(1799), 1, + ACTIONS(3129), 1, + anon_sym_POUND, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(989), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(3127), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [58899] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3545), 1, - anon_sym_RBRACE, - ACTIONS(3549), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1183), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3547), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [58961] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59023] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3521), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59085] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2825), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59147] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3551), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59209] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3553), 1, - sym_word, - ACTIONS(3556), 1, - anon_sym_RBRACE, - ACTIONS(3561), 1, - anon_sym_DOLLAR, - ACTIONS(3564), 1, - sym__special_character, - ACTIONS(3567), 1, - anon_sym_DQUOTE, - ACTIONS(3573), 1, - anon_sym_POUND, - ACTIONS(3576), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3579), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, - anon_sym_BQUOTE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(3570), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(3585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3558), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59271] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59333] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(2879), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1195), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2877), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59395] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59457] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2249), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59519] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3588), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59581] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3590), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59643] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3592), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59705] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3594), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59767] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3594), 1, - anon_sym_RBRACE, - ACTIONS(3598), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1201), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3596), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59829] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3600), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59891] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3600), 1, - anon_sym_RBRACE, - ACTIONS(3604), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1202), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3602), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [59953] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(2595), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1204), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2593), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60015] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3606), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60077] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3606), 1, - anon_sym_RBRACE, - ACTIONS(3610), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1203), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3608), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60139] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60201] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2233), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60263] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2583), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60325] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2259), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60387] = 16, + [43413] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1431), 1, anon_sym_DQUOTE, - ACTIONS(2971), 1, + ACTIONS(1675), 1, sym_word, - ACTIONS(2973), 1, + ACTIONS(1679), 1, anon_sym_LPAREN, - ACTIONS(2975), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(2977), 1, + ACTIONS(1683), 1, anon_sym_DOLLAR, - ACTIONS(2979), 1, + ACTIONS(1685), 1, sym__special_character, - ACTIONS(2983), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, + ACTIONS(1693), 1, anon_sym_BQUOTE, - ACTIONS(2991), 1, + ACTIONS(1697), 1, sym_test_operator, - STATE(1631), 1, + STATE(1588), 1, aux_sym__literal_repeat1, - ACTIONS(2981), 2, + ACTIONS(1687), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(2989), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1742), 6, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1901), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43475] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1501), 1, + sym__special_character, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(1503), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1722), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1884), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43537] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1745), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43599] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1898), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43661] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1501), 1, + sym__special_character, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(1503), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1722), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1923), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43723] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1886), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43785] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3125), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [43847] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3131), 1, + anon_sym_RBRACE, + ACTIONS(3135), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1005), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3133), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [43909] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1893), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43971] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1501), 1, + sym__special_character, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(1503), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1722), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1916), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [44033] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(3067), 1, + anon_sym_BANG, + ACTIONS(3069), 1, + sym__special_character, + ACTIONS(3071), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -65909,505 +53899,45 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [60449] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2557), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60511] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2573), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60573] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60635] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3612), 1, - anon_sym_RBRACE, - ACTIONS(3616), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1261), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3614), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60697] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2465), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60759] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3612), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60821] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60883] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(2271), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1245), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2269), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [60945] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3618), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61007] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3620), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61069] = 16, + [44095] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1447), 1, anon_sym_DQUOTE, - ACTIONS(2971), 1, + ACTIONS(3083), 1, sym_word, - ACTIONS(2973), 1, + ACTIONS(3085), 1, anon_sym_LPAREN, - ACTIONS(2975), 1, + ACTIONS(3087), 1, anon_sym_BANG, - ACTIONS(2977), 1, + ACTIONS(3089), 1, anon_sym_DOLLAR, - ACTIONS(2979), 1, + ACTIONS(3091), 1, sym__special_character, - ACTIONS(2983), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, + ACTIONS(3099), 1, anon_sym_BQUOTE, - ACTIONS(2991), 1, + ACTIONS(3103), 1, sym_test_operator, - STATE(1631), 1, + STATE(1682), 1, aux_sym__literal_repeat1, - ACTIONS(2981), 2, + ACTIONS(3093), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(2989), 2, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1742), 6, + STATE(1667), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1894), 7, + STATE(1929), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -66415,597 +53945,1885 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [61131] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3622), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61193] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3624), 1, - anon_sym_RBRACE, - ACTIONS(3628), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1262), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3626), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61255] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3551), 1, - anon_sym_RBRACE, - ACTIONS(3632), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1163), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3630), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61317] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3634), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61379] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3634), 1, - anon_sym_RBRACE, - ACTIONS(3638), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1224), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3636), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61441] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3640), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61503] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3640), 1, - anon_sym_RBRACE, - ACTIONS(3644), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1225), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3642), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61565] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(2229), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1230), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2227), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61627] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3646), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61689] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3646), 1, - anon_sym_RBRACE, - ACTIONS(3650), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1227), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3648), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61751] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61813] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3029), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61875] = 16, + [44157] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(1431), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1675), 1, sym_word, - ACTIONS(1467), 1, + ACTIONS(1679), 1, anon_sym_LPAREN, - ACTIONS(1469), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(1471), 1, + ACTIONS(1683), 1, anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1891), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [44219] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, sym__special_character, ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, ACTIONS(1485), 1, - sym_test_operator, - STATE(1612), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3137), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1475), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1483), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1421), 6, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1650), 7, + [44281] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3131), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44343] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3139), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44405] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3141), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44467] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3143), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44529] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3143), 1, + anon_sym_RBRACE, + ACTIONS(3147), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(958), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3145), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44591] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3149), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44653] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3149), 1, + anon_sym_RBRACE, + ACTIONS(3153), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(960), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3151), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44715] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(2717), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(962), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2715), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44777] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3155), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44839] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3155), 1, + anon_sym_RBRACE, + ACTIONS(3159), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(961), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3157), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44901] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44963] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2705), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45025] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45087] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2687), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45149] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3161), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45211] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3163), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45273] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3165), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45335] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3167), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45397] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_RBRACE, + ACTIONS(3171), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(973), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3169), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45459] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3173), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45521] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3173), 1, + anon_sym_RBRACE, + ACTIONS(3177), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(974), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3175), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45583] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(2405), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2403), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45645] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3179), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45707] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3179), 1, + anon_sym_RBRACE, + ACTIONS(3183), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(975), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3181), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45769] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45831] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2427), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45893] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45955] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2367), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46017] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2375), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46079] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3185), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46141] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3187), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46203] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3189), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46265] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3191), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46327] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3193), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46389] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3195), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46451] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(3199), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(990), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3197), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46513] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3201), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46575] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + anon_sym_RBRACE, + ACTIONS(3205), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(991), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3203), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46637] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1401), 1, + sym_word, + ACTIONS(1407), 1, + anon_sym_BANG, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym__special_character, + ACTIONS(2515), 1, + anon_sym_DQUOTE, + ACTIONS(2519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2521), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2523), 1, + anon_sym_BQUOTE, + ACTIONS(2527), 1, + sym_test_operator, + STATE(1394), 1, + aux_sym__literal_repeat1, + ACTIONS(2517), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(2525), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1382), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1636), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -67013,1416 +55831,36 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [61937] = 16, + [46699] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1833), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [61999] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1899), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62061] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3624), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62123] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3652), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1263), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3654), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62185] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3658), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62247] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3652), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62309] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62371] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3662), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62433] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3664), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62495] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2507), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62557] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3664), 1, - anon_sym_RBRACE, - ACTIONS(3668), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1244), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3666), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62619] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3670), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62681] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3670), 1, - anon_sym_RBRACE, - ACTIONS(3674), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1246), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3672), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62743] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2965), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1248), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2963), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62805] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3676), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62867] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62929] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3678), 1, - anon_sym_RBRACE, - ACTIONS(3682), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1303), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3680), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [62991] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3678), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63053] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3684), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63115] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_RBRACE, - ACTIONS(3688), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1247), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3686), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63177] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63239] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3690), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63301] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3692), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63363] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3694), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63425] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63487] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1489), 1, - anon_sym_RBRACE, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63549] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2325), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63611] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63673] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3696), 1, - anon_sym_RBRACE, - ACTIONS(3700), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1282), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3698), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63735] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3696), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63797] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, ACTIONS(2335), 1, anon_sym_RBRACE, ACTIONS(2339), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1280), 2, + STATE(993), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(2337), 6, @@ -68432,43 +55870,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [63859] = 16, + [46761] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3109), 1, - anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3207), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -68478,89 +55916,12233 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [63921] = 16, + [46823] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3207), 1, + anon_sym_RBRACE, + ACTIONS(3211), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(992), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3209), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46885] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46947] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2327), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47009] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2301), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47071] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2309), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47133] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3213), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47195] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(3067), 1, + anon_sym_BANG, + ACTIONS(3069), 1, + sym__special_character, + ACTIONS(3071), 1, + sym_test_operator, + STATE(1744), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1921), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [47257] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2991), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47319] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47381] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3217), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47443] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3219), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47505] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3221), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47567] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(3225), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1008), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3223), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47629] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3227), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47691] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3227), 1, + anon_sym_RBRACE, + ACTIONS(3231), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1009), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3229), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47753] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(2257), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1011), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2255), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47815] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3233), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47877] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3233), 1, + anon_sym_RBRACE, + ACTIONS(3237), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1010), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3235), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47939] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48001] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2245), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48063] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2211), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48125] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2235), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48187] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3239), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48249] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48311] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3243), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48373] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3245), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48435] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3245), 1, + anon_sym_RBRACE, + ACTIONS(3249), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1022), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3247), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48497] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3251), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48559] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3251), 1, + anon_sym_RBRACE, + ACTIONS(3255), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1023), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3253), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48621] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(2163), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1025), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2161), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48683] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3257), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48745] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3257), 1, + anon_sym_RBRACE, + ACTIONS(3261), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1024), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3259), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48807] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48869] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48931] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2151), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48993] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1709), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49055] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2141), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49117] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2385), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49179] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49241] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2975), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49303] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3265), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49365] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49427] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3269), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49489] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3269), 1, + anon_sym_RBRACE, + ACTIONS(3273), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1038), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3271), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49551] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3275), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49613] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2967), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49675] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3275), 1, + anon_sym_RBRACE, + ACTIONS(3279), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1040), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3277), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49737] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2107), 1, + anon_sym_RBRACE, + ACTIONS(2111), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1042), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2109), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49799] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3281), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49861] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, + anon_sym_RBRACE, + ACTIONS(3285), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1041), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3283), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49923] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2107), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49985] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2099), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50047] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50109] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50171] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3287), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50233] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3289), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50295] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3291), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50357] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3293), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50419] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3293), 1, + anon_sym_RBRACE, + ACTIONS(3297), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1054), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3295), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50481] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3299), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50543] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3299), 1, + anon_sym_RBRACE, + ACTIONS(3303), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1055), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3301), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50605] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(2003), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1057), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2001), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50667] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3305), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50729] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3305), 1, + anon_sym_RBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1056), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3307), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50791] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50853] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1965), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50915] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1907), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50977] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1939), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51039] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1825), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51101] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51163] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3311), 1, + anon_sym_RBRACE, + ACTIONS(3315), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(925), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3313), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51225] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3317), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51287] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3319), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51349] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3321), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51411] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51473] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3323), 1, + anon_sym_RBRACE, + ACTIONS(3327), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1071), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3325), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51535] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3329), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51597] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3329), 1, + anon_sym_RBRACE, + ACTIONS(3333), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1072), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3331), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51659] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1717), 1, + anon_sym_RBRACE, + ACTIONS(1721), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1074), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1719), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51721] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3335), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51783] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3335), 1, + anon_sym_RBRACE, + ACTIONS(3339), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1073), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3337), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51845] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1717), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51907] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51969] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1651), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52031] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3341), 1, + sym_word, + ACTIONS(3344), 1, + anon_sym_RBRACE, + ACTIONS(3349), 1, + anon_sym_DOLLAR, + ACTIONS(3352), 1, + sym__special_character, + ACTIONS(3355), 1, + anon_sym_DQUOTE, + ACTIONS(3361), 1, + anon_sym_POUND, + ACTIONS(3364), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3367), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3370), 1, + anon_sym_BQUOTE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(3358), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(3373), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3346), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52093] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52155] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(1779), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1161), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1777), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52217] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1631), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52279] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3376), 1, + anon_sym_RBRACE, + ACTIONS(3380), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1233), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3378), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52341] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3382), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52403] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3384), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52465] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3386), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52527] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3388), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52589] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3388), 1, + anon_sym_RBRACE, + ACTIONS(3392), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1089), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3390), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52651] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3394), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52713] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3394), 1, + anon_sym_RBRACE, + ACTIONS(3398), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1090), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3396), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52775] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1469), 1, + anon_sym_RBRACE, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1092), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1471), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52837] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3400), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52899] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3400), 1, + anon_sym_RBRACE, + ACTIONS(3404), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1091), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3402), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52961] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1469), 1, + anon_sym_RBRACE, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53023] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1793), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53085] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1741), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53147] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1749), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53209] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3406), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53271] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3408), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53333] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3410), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53395] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3412), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53457] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3412), 1, + anon_sym_RBRACE, + ACTIONS(3416), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1103), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3414), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53519] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3418), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53581] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3418), 1, + anon_sym_RBRACE, + ACTIONS(3422), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1104), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3420), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53643] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1667), 1, + anon_sym_RBRACE, + ACTIONS(1671), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1106), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1669), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53705] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3424), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53767] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3424), 1, + anon_sym_RBRACE, + ACTIONS(3428), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1105), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3426), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53829] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1667), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53891] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3376), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53953] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1659), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54015] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1675), 1, + sym_word, + ACTIONS(1679), 1, + anon_sym_LPAREN, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1685), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(1697), 1, + sym_test_operator, + STATE(1588), 1, + aux_sym__literal_repeat1, + ACTIONS(1687), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1758), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [54077] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1607), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54139] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1641), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54201] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3430), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54263] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3432), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54325] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3434), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54387] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3436), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54449] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3436), 1, + anon_sym_RBRACE, + ACTIONS(3440), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1119), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3438), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54511] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3442), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54573] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3442), 1, + anon_sym_RBRACE, + ACTIONS(3446), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1120), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3444), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54635] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_RBRACE, + ACTIONS(1571), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1122), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1569), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54697] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3448), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54759] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3448), 1, + anon_sym_RBRACE, + ACTIONS(3452), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1121), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3450), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54821] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54883] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1559), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54945] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1541), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55007] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1549), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55069] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3454), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55131] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3456), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55193] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3458), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55255] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3460), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55317] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3460), 1, + anon_sym_RBRACE, + ACTIONS(3464), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1133), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3462), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55379] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3466), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55441] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3466), 1, + anon_sym_RBRACE, + ACTIONS(3470), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1134), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3468), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55503] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1809), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1136), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1811), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55565] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3472), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55627] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3472), 1, + anon_sym_RBRACE, + ACTIONS(3476), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1135), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3474), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55689] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1809), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55751] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1801), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55813] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1733), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55875] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1767), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55937] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3478), 1, + anon_sym_RBRACE, + ACTIONS(3482), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1208), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3480), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [55999] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3484), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56061] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3486), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56123] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3488), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56185] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3490), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56247] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3490), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1148), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3492), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56309] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3496), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56371] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3496), 1, + anon_sym_RBRACE, + ACTIONS(3500), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1149), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3498), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56433] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(1877), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1151), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1875), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56495] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3107), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56557] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3478), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56619] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56681] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3502), 1, + anon_sym_RBRACE, + ACTIONS(3506), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1209), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3504), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56743] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1881), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56805] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3502), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56867] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2967), 1, + anon_sym_RBRACE, + ACTIONS(2971), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2969), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56929] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1889), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56991] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3508), 1, + anon_sym_RBRACE, + ACTIONS(3512), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1237), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3510), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57053] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2877), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57115] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57177] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3516), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57239] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3518), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57301] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3520), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57363] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3520), 1, + anon_sym_RBRACE, + ACTIONS(3524), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1166), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3522), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57425] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3526), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57487] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3526), 1, + anon_sym_RBRACE, + ACTIONS(3530), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1167), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3528), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57549] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1949), 1, + anon_sym_RBRACE, + ACTIONS(1953), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1169), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1951), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57611] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3532), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57673] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3532), 1, + anon_sym_RBRACE, + ACTIONS(3536), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1168), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3534), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57735] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1949), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57797] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1957), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57859] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1973), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57921] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1981), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57983] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3538), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58045] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3540), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58107] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3542), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58169] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3544), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58231] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3544), 1, + anon_sym_RBRACE, + ACTIONS(3548), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1180), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3546), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58293] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3550), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58355] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3550), 1, + anon_sym_RBRACE, + ACTIONS(3554), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1181), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3552), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58417] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2025), 1, + anon_sym_RBRACE, + ACTIONS(2029), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1183), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2027), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58479] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3556), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58541] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3556), 1, + anon_sym_RBRACE, + ACTIONS(3560), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1182), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3558), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58603] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2025), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58665] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2033), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58727] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1833), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58789] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2057), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58851] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3562), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58913] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3564), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [58975] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3566), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59037] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3568), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59099] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3568), 1, + anon_sym_RBRACE, + ACTIONS(3572), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1194), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3570), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59161] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3574), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59223] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3574), 1, + anon_sym_RBRACE, + ACTIONS(3578), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1195), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3576), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59285] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2227), 1, + anon_sym_RBRACE, + ACTIONS(2231), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1197), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2229), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59347] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3580), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59409] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3580), 1, + anon_sym_RBRACE, + ACTIONS(3584), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1196), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3582), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59471] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2227), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59533] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2277), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59595] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2285), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59657] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2319), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59719] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3586), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59781] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3588), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59843] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3590), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59905] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3592), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59967] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3594), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60029] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3508), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60091] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3596), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60153] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3596), 1, + anon_sym_RBRACE, + ACTIONS(3600), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1210), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3598), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60215] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3602), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60277] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + anon_sym_RBRACE, + ACTIONS(3606), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1211), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3604), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60339] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_RBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1214), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2445), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60401] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3608), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60463] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3608), 1, + anon_sym_RBRACE, + ACTIONS(3612), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1212), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3610), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60525] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60587] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2451), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60649] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2467), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60711] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2485), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60773] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3614), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60835] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3616), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60897] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3618), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60959] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3620), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61021] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1501), 1, + sym__special_character, + ACTIONS(1505), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(3702), 1, - anon_sym_RBRACE, - ACTIONS(3706), 1, - anon_sym_POUND, - STATE(1799), 1, + ACTIONS(1513), 1, + sym_test_operator, + STATE(1676), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1503), 2, sym_raw_string, sym_ansii_c_string, ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1722), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1903), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [61083] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3622), 1, + anon_sym_RBRACE, + ACTIONS(3626), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1239), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3624), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61145] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_RBRACE, + ACTIONS(3630), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1225), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3628), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61207] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3622), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61269] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3632), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61331] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3634), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61393] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3634), 1, + anon_sym_RBRACE, + ACTIONS(3638), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1226), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3636), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61455] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(2559), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1228), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2557), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61517] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3640), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61579] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3642), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61641] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3644), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61703] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1401), 1, + sym_word, + ACTIONS(1407), 1, + anon_sym_BANG, + ACTIONS(1409), 1, + anon_sym_DOLLAR, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym__special_character, + ACTIONS(2515), 1, + anon_sym_DQUOTE, + ACTIONS(2519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2521), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2523), 1, + anon_sym_BQUOTE, + ACTIONS(2527), 1, + sym_test_operator, + STATE(1394), 1, + aux_sym__literal_repeat1, + ACTIONS(2517), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(2525), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1382), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1576), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [61765] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, + anon_sym_RBRACE, + ACTIONS(3648), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1227), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3646), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61827] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61889] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2563), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [61951] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62013] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2933), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62075] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2587), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62137] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2925), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62199] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3650), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62261] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3652), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62323] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2917), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62385] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3654), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62447] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3656), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62509] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3656), 1, + anon_sym_RBRACE, + ACTIONS(3660), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1248), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3658), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62571] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3662), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62633] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3662), 1, + anon_sym_RBRACE, + ACTIONS(3666), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1249), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3664), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62695] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(2625), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1252), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2623), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62757] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3668), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62819] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3668), 1, + anon_sym_RBRACE, + ACTIONS(3672), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1251), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3670), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62881] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62943] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2629), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63005] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63067] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2909), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63129] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2645), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63191] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3674), 1, + anon_sym_RBRACE, + ACTIONS(3678), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, STATE(1283), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3704), 6, + ACTIONS(3676), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [63983] = 16, + [63253] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(3117), 1, anon_sym_POUND, - ACTIONS(3702), 1, + ACTIONS(3680), 1, anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -68570,98 +68152,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [64045] = 16, + [63315] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(2521), 1, + ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3682), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1304), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(2519), 6, + ACTIONS(3115), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [64107] = 16, - ACTIONS(55), 1, + [63377] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2971), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(2973), 1, - anon_sym_LPAREN, - ACTIONS(2975), 1, - anon_sym_BANG, - ACTIONS(2977), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(2979), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(2983), 1, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2991), 1, - sym_test_operator, - STATE(1631), 1, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3674), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(2981), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(2989), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1742), 6, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1881), 7, + [63439] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1501), 1, + sym__special_character, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(1503), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1722), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1897), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -68669,36 +68297,36 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [64169] = 16, + [63501] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2883), 1, - anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3684), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -68708,43 +68336,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [64231] = 16, + [63563] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2833), 1, - anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3686), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -68754,43 +68382,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [64293] = 16, + [63625] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2841), 1, + ACTIONS(3686), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3690), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1265), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3688), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63687] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3692), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -68800,558 +68474,190 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [64355] = 16, + [63749] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3708), 1, + ACTIONS(3692), 1, anon_sym_RBRACE, - ACTIONS(3712), 1, + ACTIONS(3696), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1266), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3694), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63811] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2909), 1, + anon_sym_RBRACE, + ACTIONS(2913), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1282), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2911), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63873] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3698), 1, + anon_sym_RBRACE, + ACTIONS(3702), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1284), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3710), 6, + ACTIONS(3700), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [64417] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3708), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64479] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3714), 1, - anon_sym_RBRACE, - ACTIONS(3718), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1302), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3716), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64541] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3720), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64603] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3722), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64665] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3724), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64727] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3726), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64789] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3728), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64851] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64913] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3732), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64975] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3732), 1, - anon_sym_RBRACE, - ACTIONS(3736), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1285), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3734), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65037] = 16, + [63935] = 16, ACTIONS(55), 1, sym_comment, - ACTIONS(1387), 1, + ACTIONS(1401), 1, sym_word, - ACTIONS(1393), 1, + ACTIONS(1407), 1, anon_sym_BANG, - ACTIONS(1395), 1, + ACTIONS(1409), 1, anon_sym_DOLLAR, - ACTIONS(2351), 1, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2353), 1, + ACTIONS(2513), 1, sym__special_character, - ACTIONS(2355), 1, + ACTIONS(2515), 1, anon_sym_DQUOTE, - ACTIONS(2359), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, + ACTIONS(2521), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, + ACTIONS(2523), 1, anon_sym_BQUOTE, - ACTIONS(2367), 1, + ACTIONS(2527), 1, sym_test_operator, - STATE(1388), 1, + STATE(1394), 1, aux_sym__literal_repeat1, - ACTIONS(2357), 2, + ACTIONS(2517), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(2365), 2, + ACTIONS(2525), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1356), 6, + STATE(1382), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(1602), 7, + STATE(1599), 7, sym__expression, sym_binary_expression, sym_ternary_expression, @@ -69359,36 +68665,36 @@ static uint16_t ts_small_parse_table[] = { sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [65099] = 16, + [63997] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(3117), 1, anon_sym_POUND, - ACTIONS(3738), 1, + ACTIONS(3698), 1, anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69398,135 +68704,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65161] = 16, + [64059] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3738), 1, + ACTIONS(2679), 1, anon_sym_RBRACE, - ACTIONS(3742), 1, + ACTIONS(2683), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1286), 2, + STATE(1270), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3740), 6, + ACTIONS(2681), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65223] = 16, + [64121] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(2783), 1, - anon_sym_RBRACE, - ACTIONS(2787), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1288), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2785), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65285] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, anon_sym_BQUOTE, ACTIONS(3117), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3704), 1, anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69536,89 +68796,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65347] = 16, + [64183] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3744), 1, + ACTIONS(3704), 1, anon_sym_RBRACE, - ACTIONS(3748), 1, + ACTIONS(3708), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1287), 2, + STATE(1269), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3746), 6, + ACTIONS(3706), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65409] = 16, + [64245] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2783), 1, + ACTIONS(3710), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3714), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1285), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3712), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64307] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3710), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69628,43 +68934,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65471] = 16, + [64369] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2767), 1, - anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3716), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69674,43 +68980,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65533] = 16, + [64431] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(2715), 1, - anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(3718), 1, + anon_sym_RBRACE, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69720,43 +69026,687 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65595] = 16, + [64493] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3720), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64555] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1493), 1, + sym_word, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1497), 1, + anon_sym_BANG, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1501), 1, + sym__special_character, + ACTIONS(1505), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(1509), 1, anon_sym_BQUOTE, + ACTIONS(1513), 1, + sym_test_operator, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(1503), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1722), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(1912), 7, + sym__expression, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [64617] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2869), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64679] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2861), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64741] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2853), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64803] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2845), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64865] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3722), 1, + anon_sym_RBRACE, + ACTIONS(3726), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1318), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3724), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64927] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3722), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64989] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2845), 1, + anon_sym_RBRACE, + ACTIONS(2849), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1302), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2847), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65051] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3728), 1, + anon_sym_RBRACE, + ACTIONS(3732), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1317), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3730), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65113] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2679), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65175] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65237] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2723), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65299] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3728), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65361] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, ACTIONS(2731), 1, anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69766,89 +69716,365 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65657] = 16, + [65423] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3676), 1, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3734), 1, anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65485] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3736), 1, + anon_sym_RBRACE, + ACTIONS(3740), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1316), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3738), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65547] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3736), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65609] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65671] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65733] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3746), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65795] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3746), 1, + anon_sym_RBRACE, + ACTIONS(3750), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1300), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3748), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65857] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, ACTIONS(3752), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1179), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3750), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65719] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3754), 1, anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69858,89 +70084,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65781] = 16, + [65919] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, + ACTIONS(3752), 1, + anon_sym_RBRACE, ACTIONS(3756), 1, - anon_sym_RBRACE, - STATE(1799), 1, + anon_sym_POUND, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1303), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3115), 6, + ACTIONS(3754), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65843] = 16, + [65981] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2771), 1, + anon_sym_RBRACE, + ACTIONS(2775), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1305), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(2773), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66043] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(3117), 1, anon_sym_POUND, ACTIONS(3758), 1, anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -69950,135 +70222,273 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [65905] = 16, + [66105] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1467), 1, sym_word, - ACTIONS(1493), 1, + ACTIONS(1473), 1, anon_sym_DOLLAR, - ACTIONS(1495), 1, + ACTIONS(1475), 1, sym__special_character, - ACTIONS(1497), 1, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(1503), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3758), 1, + anon_sym_RBRACE, + ACTIONS(3762), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1304), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3760), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66167] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2771), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66229] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2779), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66291] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2787), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66353] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(2795), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_POUND, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66415] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, anon_sym_BQUOTE, ACTIONS(3117), 1, anon_sym_POUND, - ACTIONS(3760), 1, - anon_sym_RBRACE, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1196), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65967] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3760), 1, - anon_sym_RBRACE, ACTIONS(3764), 1, - anon_sym_POUND, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(1499), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1301), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3762), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(1651), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [66029] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 1, - sym_word, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 1, - sym__special_character, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(3117), 1, - anon_sym_POUND, - ACTIONS(3714), 1, anon_sym_RBRACE, - STATE(1799), 1, + STATE(1860), 1, aux_sym__literal_repeat1, - ACTIONS(1499), 2, + ACTIONS(1479), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(1511), 2, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1196), 2, + STATE(1084), 2, sym_concatenation, aux_sym_expansion_repeat1, ACTIONS(3115), 6, @@ -70088,30 +70498,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(1651), 6, + STATE(1658), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [66091] = 9, + [66477] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(3768), 1, - sym_raw_string, - ACTIONS(3770), 1, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, anon_sym_POUND, - STATE(1777), 1, + ACTIONS(3766), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, sym_string, - ACTIONS(3766), 4, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66539] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + sym_word, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1475), 1, + sym__special_character, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(3117), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + anon_sym_RBRACE, + STATE(1860), 1, + aux_sym__literal_repeat1, + ACTIONS(1479), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1084), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + STATE(1658), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66601] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(3772), 1, + sym_raw_string, + ACTIONS(3774), 1, + anon_sym_POUND, + STATE(1798), 1, + sym_string, + ACTIONS(3770), 4, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(3772), 5, + ACTIONS(3776), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -70133,18 +70635,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [66138] = 4, + [66648] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 2, - sym_file_descriptor, + ACTIONS(3778), 1, anon_sym_LF, - STATE(1309), 4, + ACTIONS(3788), 1, + anon_sym_LT_LT_LT, + ACTIONS(3791), 1, + sym_file_descriptor, + ACTIONS(3785), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1320), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1003), 20, + ACTIONS(3782), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3780), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, + anon_sym_AMP, + [66692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1009), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1011), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -70165,103 +70703,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [66174] = 8, + [66728] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, + ACTIONS(965), 1, anon_sym_LT_LT_LT, - ACTIONS(3774), 1, + ACTIONS(3794), 1, anon_sym_LF, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1310), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3776), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BQUOTE, - anon_sym_AMP, - [66218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 1, - anon_sym_LF, - ACTIONS(3792), 1, - anon_sym_LT_LT_LT, - ACTIONS(3795), 1, - sym_file_descriptor, - ACTIONS(3789), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1310), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3786), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3784), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BQUOTE, - anon_sym_AMP, - [66262] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1015), 1, - anon_sym_LF, - ACTIONS(1021), 1, - anon_sym_LT_LT_LT, ACTIONS(3800), 1, sym_file_descriptor, - ACTIONS(555), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(957), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(969), 2, + ACTIONS(963), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1017), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1019), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(1333), 4, + STATE(1320), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -70275,25 +70729,351 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [66311] = 4, + ACTIONS(3796), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, + anon_sym_AMP, + [66772] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 3, + ACTIONS(553), 1, + ts_builtin_sym_end, + ACTIONS(993), 1, + anon_sym_LT_LT_LT, + ACTIONS(1013), 1, + anon_sym_LF, + ACTIONS(3804), 1, sym_file_descriptor, + ACTIONS(973), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(989), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(991), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1015), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3802), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [66821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 1, + sym__special_character, + STATE(1339), 1, + aux_sym__literal_repeat1, + ACTIONS(3806), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3808), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [66858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym__concat, + STATE(1354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_BQUOTE, + anon_sym_AMP, + [66895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 1, + sym__special_character, + STATE(1339), 1, + aux_sym__literal_repeat1, + ACTIONS(3814), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3816), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [66932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(969), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(971), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [66969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1009), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1011), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [67004] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, + anon_sym_LT_LT_LT, + ACTIONS(3794), 1, + anon_sym_LF, + ACTIONS(3820), 1, + sym_file_descriptor, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1348), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3796), 8, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(3818), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67047] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + ts_builtin_sym_end, + ACTIONS(985), 1, + anon_sym_LF, + ACTIONS(993), 1, + anon_sym_LT_LT_LT, + ACTIONS(3804), 1, + sym_file_descriptor, + ACTIONS(973), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(989), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(991), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(987), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3802), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67096] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_RPAREN, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(995), 1, + anon_sym_LF, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(997), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67145] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(993), 1, + anon_sym_LT_LT_LT, + ACTIONS(3804), 1, + sym_file_descriptor, + ACTIONS(991), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3794), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(1331), 4, + STATE(1344), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1003), 18, + ACTIONS(3796), 7, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(3802), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -70302,162 +71082,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [66346] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(953), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [66383] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 1, - anon_sym_LT_LT_LT, - ACTIONS(1023), 1, - anon_sym_LF, - ACTIONS(3800), 1, - sym_file_descriptor, - ACTIONS(957), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1009), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(1019), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1025), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(1333), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3798), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [66432] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(953), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(957), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1333), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 17, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [66469] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3802), 1, - sym__concat, - STATE(1316), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1033), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [66506] = 8, + [67188] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(537), 1, anon_sym_LF, - ACTIONS(3807), 1, + ACTIONS(3824), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(3826), 1, sym_raw_string, - STATE(1994), 1, + STATE(1993), 1, sym_string, - ACTIONS(3805), 5, + ACTIONS(3822), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(3811), 5, + ACTIONS(3828), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -70475,167 +71117,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [66549] = 11, + [67231] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(555), 1, - anon_sym_RPAREN, - ACTIONS(961), 1, + ACTIONS(999), 1, anon_sym_LF, - ACTIONS(971), 1, + ACTIONS(1007), 1, anon_sym_LT_LT_LT, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(963), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [66598] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - sym__special_character, - STATE(1319), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1220), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [66635] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(3820), 1, - sym__special_character, - STATE(1319), 1, - aux_sym__literal_repeat1, - ACTIONS(3816), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(3818), 21, - anon_sym_SEMI, + ACTIONS(959), 2, anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(963), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [66672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, - sym__concat, - STATE(1384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 21, + ACTIONS(1001), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1003), 2, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(1005), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - anon_sym_AMP, - [66709] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3830), 1, - anon_sym_LT_LT_LT, - ACTIONS(3833), 1, - sym_file_descriptor, - ACTIONS(3782), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1322), 4, + STATE(1329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3784), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3824), 8, + ACTIONS(3818), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -70644,203 +71155,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [66752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(987), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(953), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1331), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [66789] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 1, - sym__special_character, - STATE(1319), 1, - aux_sym__literal_repeat1, - ACTIONS(3836), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3838), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [66826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, - sym__concat, - STATE(1340), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 23, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - anon_sym_AMP, - [66861] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1009), 1, - anon_sym_BQUOTE, - ACTIONS(1102), 1, - anon_sym_LF, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1084), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1086), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1104), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [66910] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1005), 1, - anon_sym_LF, - ACTIONS(1009), 1, - anon_sym_RPAREN, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1007), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [66959] = 9, + [67280] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(3850), 1, + ACTIONS(3838), 1, anon_sym_DOLLAR, - ACTIONS(3852), 1, + ACTIONS(3840), 1, sym_file_descriptor, - ACTIONS(3855), 1, + ACTIONS(3843), 1, sym_variable_name, - STATE(2600), 1, + STATE(2619), 1, sym_subscript, - ACTIONS(3844), 3, + ACTIONS(3832), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1328), 3, + STATE(1335), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(3847), 5, + ACTIONS(3835), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3842), 10, + ACTIONS(3830), 10, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -70851,36 +71191,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67004] = 11, + [67325] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, - ts_builtin_sym_end, - ACTIONS(993), 1, + ACTIONS(1007), 1, anon_sym_LT_LT_LT, - ACTIONS(1011), 1, + ACTIONS(1017), 1, anon_sym_LF, - ACTIONS(3860), 1, + ACTIONS(3820), 1, sym_file_descriptor, - ACTIONS(987), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(989), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(991), 2, + ACTIONS(551), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(963), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1013), 3, + ACTIONS(1003), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1005), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1019), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1331), 4, + STATE(1329), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3858), 8, + ACTIONS(3818), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -70889,137 +71229,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [67053] = 5, + [67374] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1084), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(955), 17, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(551), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [67090] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(993), 1, + ACTIONS(965), 1, anon_sym_LT_LT_LT, - ACTIONS(3860), 1, + ACTIONS(1116), 1, + anon_sym_LF, + ACTIONS(3800), 1, sym_file_descriptor, - ACTIONS(991), 2, + ACTIONS(963), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3774), 2, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(1029), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1067), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1118), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3776), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3858), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [67133] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(981), 1, - ts_builtin_sym_end, - ACTIONS(983), 1, - anon_sym_LF, - ACTIONS(993), 1, - anon_sym_LT_LT_LT, - ACTIONS(3860), 1, - sym_file_descriptor, - ACTIONS(987), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(989), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(991), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(985), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1331), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3858), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [67182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 1, - anon_sym_LT_LT_LT, - ACTIONS(3774), 1, - anon_sym_LF, - ACTIONS(3800), 1, - sym_file_descriptor, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1335), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3776), 8, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, ACTIONS(3798), 8, anon_sym_LT, anon_sym_GT, @@ -71029,83 +71267,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [67225] = 4, + [67423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1333), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1003), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [67260] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 1, - anon_sym_LF, - ACTIONS(3865), 1, - anon_sym_LT_LT_LT, - ACTIONS(3868), 1, - sym_file_descriptor, - ACTIONS(3789), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1335), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3784), 8, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3862), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [67303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 1, + ACTIONS(3810), 1, sym__special_character, - STATE(1319), 1, + STATE(1339), 1, aux_sym__literal_repeat1, - ACTIONS(3871), 2, + ACTIONS(3846), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3873), 21, + ACTIONS(3848), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -71127,36 +71299,790 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [67340] = 11, + [67460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(555), 1, + ACTIONS(3850), 1, + sym__special_character, + STATE(1339), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1248), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(971), 1, + anon_sym_AMP, + [67497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1009), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1011), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [67532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(973), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(969), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1332), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(971), 16, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [67569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3853), 1, + sym__concat, + STATE(1389), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1076), 23, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + anon_sym_AMP, + [67604] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(959), 1, + anon_sym_BQUOTE, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1063), 1, + anon_sym_LF, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1029), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1067), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1065), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67653] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3861), 1, + anon_sym_LT_LT_LT, + ACTIONS(3864), 1, + sym_file_descriptor, + ACTIONS(3778), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3858), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1344), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3780), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(3855), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67696] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(969), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1003), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1329), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(971), 17, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [67733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(969), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1029), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(971), 17, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [67770] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(953), 1, + anon_sym_LF, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(955), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67819] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3778), 1, + anon_sym_LF, + ACTIONS(3870), 1, + anon_sym_LT_LT_LT, + ACTIONS(3873), 1, + sym_file_descriptor, + ACTIONS(3785), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1348), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3780), 8, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(3867), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [67862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 1, + sym__concat, + STATE(1349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1037), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1035), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [67899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [67931] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3881), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(3879), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [67967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1035), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [67999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1167), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + sym__concat, + STATE(1349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1044), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1127), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68099] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3890), 1, + anon_sym_LF, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + ACTIONS(3897), 1, + sym__special_character, + ACTIONS(3900), 1, + anon_sym_DQUOTE, + ACTIONS(3903), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3906), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3909), 1, + anon_sym_BQUOTE, + STATE(1994), 1, + aux_sym__literal_repeat1, + ACTIONS(3912), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1356), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3887), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(3892), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1980), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [68153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 1, + sym__concat, + STATE(1412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1076), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_AMP, + [68189] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_SEMI_SEMI, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1086), 1, + anon_sym_LF, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(997), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [68237] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3917), 1, + sym__concat, + STATE(1360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1042), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [68273] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3919), 1, + sym__concat, + STATE(1360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1037), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [68309] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_DQUOTE, + ACTIONS(3924), 1, + anon_sym_LF, + ACTIONS(3928), 1, + anon_sym_DOLLAR, + ACTIONS(3930), 1, + sym__special_character, + ACTIONS(3932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3934), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3936), 1, + anon_sym_BQUOTE, + STATE(1994), 1, + aux_sym__literal_repeat1, + ACTIONS(3938), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1356), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3922), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(3926), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1980), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [68363] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, anon_sym_LT_LT_LT, ACTIONS(1080), 1, anon_sym_LF, - ACTIONS(3780), 1, + ACTIONS(3800), 1, sym_file_descriptor, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1084), 2, + ACTIONS(957), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1086), 2, + ACTIONS(961), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, ACTIONS(1082), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1309), 4, + STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, + ACTIONS(3798), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -71165,14 +72091,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [67389] = 3, + [68409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 3, + ACTIONS(1078), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1076), 22, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_BQUOTE, + anon_sym_AMP, + [68441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1241), 21, + ACTIONS(1151), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -71194,14 +72149,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [67421] = 3, + [68473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 3, + ACTIONS(1185), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1210), 21, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -71223,239 +72178,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [67453] = 4, + [68505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, - sym__concat, - STATE(1341), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1055), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [67487] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3877), 1, - sym__concat, - STATE(1341), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [67521] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1044), 1, - anon_sym_LF, - ACTIONS(3780), 1, + ACTIONS(1125), 3, sym_file_descriptor, - ACTIONS(965), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1123), 21, + anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(967), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(969), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, anon_sym_LT_LT_DASH, - ACTIONS(1046), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [67567] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, anon_sym_LT_LT_LT, - ACTIONS(1094), 1, - anon_sym_LF, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1096), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_BQUOTE, anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [67613] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3884), 1, - sym__concat, - STATE(1352), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(3880), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67649] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3884), 1, - sym__concat, - STATE(1352), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1067), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67685] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3884), 1, - sym__concat, - STATE(1352), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(3886), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67721] = 4, + [68537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3940), 1, sym__special_character, - STATE(1347), 1, + STATE(1367), 1, aux_sym__literal_repeat1, - ACTIONS(1220), 22, + ACTIONS(1248), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -71478,20 +72237,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [67755] = 5, + [68571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, - sym__concat, - STATE(1495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, + ACTIONS(1228), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(1069), 20, + ACTIONS(1226), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -71507,59 +72264,237 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, + anon_sym_BQUOTE, anon_sym_AMP, - [67791] = 14, + [68603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3895), 1, + ACTIONS(1257), 3, + sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(3899), 1, - anon_sym_DOLLAR, - ACTIONS(3901), 1, - sym__special_character, - ACTIONS(3903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3907), 1, + ACTIONS(1255), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1244), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68667] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1076), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1078), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(3909), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1374), 2, + sym_word, + [68703] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_DQUOTE, + ACTIONS(3928), 1, + anon_sym_DOLLAR, + ACTIONS(3930), 1, + sym__special_character, + ACTIONS(3932), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3934), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3936), 1, + anon_sym_BQUOTE, + ACTIONS(3943), 1, + anon_sym_LF, + STATE(1994), 1, + aux_sym__literal_repeat1, + ACTIONS(3938), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1356), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3893), 3, + ACTIONS(3922), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(3897), 3, + ACTIONS(3945), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1965), 6, + STATE(1980), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [67845] = 5, + [68757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(3812), 1, sym__concat, - STATE(1384), 1, + STATE(1505), 1, aux_sym_concatenation_repeat1, - ACTIONS(3886), 2, + ACTIONS(1078), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3888), 20, + ACTIONS(1076), 20, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_AMP, + [68793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1240), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1179), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [68857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym__concat, + STATE(1354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3879), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3881), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -71580,117 +72515,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [67881] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3911), 1, - sym__concat, - STATE(1351), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1035), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67917] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3914), 1, - sym__concat, - STATE(1351), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1055), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1057), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67953] = 11, + [68893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(555), 1, - anon_sym_SEMI_SEMI, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1108), 1, - anon_sym_LF, - ACTIONS(3780), 1, + ACTIONS(1238), 3, sym_file_descriptor, - ACTIONS(963), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [68001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, sym__concat, - STATE(1384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3880), 2, - sym_file_descriptor, anon_sym_LF, - ACTIONS(3882), 20, + ACTIONS(1236), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, @@ -71710,101 +72544,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [68037] = 10, + [68925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1110), 1, - anon_sym_LF, - ACTIONS(3780), 1, + ACTIONS(1197), 3, sym_file_descriptor, - ACTIONS(965), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(967), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1112), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [68083] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, sym__concat, - STATE(1340), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3916), 22, anon_sym_LF, + ACTIONS(1195), 21, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [68117] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1009), 1, - anon_sym_SEMI_SEMI, - ACTIONS(1106), 1, - anon_sym_LF, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(965), 2, + anon_sym_esac, anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(967), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(969), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1007), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(1309), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -71813,81 +72568,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [68165] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3899), 1, - anon_sym_DOLLAR, - ACTIONS(3901), 1, - sym__special_character, - ACTIONS(3903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3907), 1, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(3918), 1, - anon_sym_LF, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(3909), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1374), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3893), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(3920), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1965), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68219] = 5, + [68957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, - sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [68255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 3, + ACTIONS(1193), 3, sym_file_descriptor, sym__concat, anon_sym_LF, @@ -71913,16 +72602,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [68287] = 3, + [68989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 3, - sym_file_descriptor, + ACTIONS(3812), 1, sym__concat, + STATE(1354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3947), 2, + sym_file_descriptor, anon_sym_LF, - ACTIONS(1033), 21, + ACTIONS(3949), 20, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, @@ -71942,97 +72633,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [68319] = 3, + [69025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 3, - sym_file_descriptor, + ACTIONS(3951), 1, sym__concat, + STATE(1381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 22, anon_sym_LF, - ACTIONS(1160), 21, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, anon_sym_AMP, - [68351] = 3, + [69059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1069), 22, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - anon_sym_AMP, - [68383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 3, - sym_file_descriptor, + ACTIONS(3853), 1, sym__concat, + STATE(1389), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 22, anon_sym_LF, - ACTIONS(1148), 21, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, anon_sym_AMP, - [68415] = 3, + [69093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 3, + ACTIONS(1189), 3, sym_file_descriptor, sym__concat, anon_sym_LF, @@ -72058,14 +72722,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [68447] = 3, + [69125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 3, + ACTIONS(1155), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1257), 21, + ACTIONS(1157), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -72087,14 +72751,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [68479] = 3, + [69157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 3, + ACTIONS(1159), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1261), 21, + ACTIONS(1161), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -72116,600 +72780,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [68511] = 3, - ACTIONS(3), 1, + [69189] = 5, + ACTIONS(55), 1, sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, + ACTIONS(3883), 1, sym__concat, - anon_sym_LF, - ACTIONS(1265), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1164), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, - sym__concat, - STATE(1384), 1, + STATE(1359), 1, aux_sym_concatenation_repeat1, - ACTIONS(3924), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3926), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3949), 4, anon_sym_LT, anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1156), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68707] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3931), 1, - anon_sym_LF, - ACTIONS(3935), 1, anon_sym_DOLLAR, - ACTIONS(3938), 1, + ACTIONS(3947), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, sym__special_character, - ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(3944), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3947), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3950), 1, - anon_sym_BQUOTE, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(3953), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1374), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3928), 3, sym_raw_string, sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(3933), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1965), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68761] = 3, + [69225] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1181), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, + ACTIONS(965), 1, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(1088), 1, anon_sym_LF, - ACTIONS(1233), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 3, + ACTIONS(3800), 1, sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1237), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1249), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [68985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1177), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1168), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - sym__concat, - STATE(1316), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1055), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1152), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1144), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69149] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(971), 1, - anon_sym_LT_LT_LT, - ACTIONS(1040), 1, - anon_sym_LF, - ACTIONS(3780), 1, - sym_file_descriptor, - ACTIONS(965), 2, + ACTIONS(957), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(967), 2, + ACTIONS(961), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(969), 2, + ACTIONS(963), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1042), 3, + ACTIONS(1090), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1309), 4, + STATE(1322), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3778), 8, + ACTIONS(3798), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -72718,12 +72847,209 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [69195] = 4, + [69271] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1092), 1, + anon_sym_LF, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1094), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [69317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3956), 1, + sym__concat, + STATE(1381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [69351] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(959), 1, + anon_sym_SEMI_SEMI, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1027), 1, + anon_sym_LF, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(955), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [69399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1173), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69463] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LT_LT_LT, + ACTIONS(1110), 1, + anon_sym_LF, + ACTIONS(3800), 1, + sym_file_descriptor, + ACTIONS(957), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(961), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(963), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1112), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1322), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [69509] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3960), 1, sym__special_character, - STATE(1347), 1, + STATE(1367), 1, aux_sym__literal_repeat1, ACTIONS(3958), 22, anon_sym_LF, @@ -72748,40 +73074,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [69229] = 2, + [69543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 23, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - anon_sym_AMP, - [69258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 2, + ACTIONS(1165), 3, sym_file_descriptor, + sym__concat, anon_sym_LF, - ACTIONS(3964), 21, + ACTIONS(1163), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -72803,7 +73103,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69289] = 3, + [69575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1147), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym__concat, + STATE(1354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3962), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3964), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1135), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1131), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [69771] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3966), 2, @@ -72831,63 +73307,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69320] = 3, - ACTIONS(3), 1, + [69802] = 16, + ACTIONS(55), 1, sym_comment, - ACTIONS(3970), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3972), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [69351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3974), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3976), 21, - anon_sym_SEMI, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3972), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69382] = 3, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2676), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1579), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [69859] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3978), 2, @@ -72915,13 +73376,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69413] = 3, + [69890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 2, + ACTIONS(3982), 1, + sym__special_character, + STATE(1405), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1248), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [69925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3984), 21, + ACTIONS(3987), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -72943,13 +73434,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69444] = 3, + [69956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3986), 2, + ACTIONS(3989), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3988), 21, + ACTIONS(3991), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -72971,13 +73462,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69475] = 3, + [69987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 2, + ACTIONS(3993), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3992), 21, + ACTIONS(3995), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -72999,103 +73490,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69506] = 3, - ACTIONS(3), 1, + [70018] = 16, + ACTIONS(55), 1, sym_comment, - ACTIONS(3994), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3996), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [69537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3998), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4000), 21, - anon_sym_SEMI, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69568] = 3, - ACTIONS(3), 1, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2711), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1568), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [70075] = 16, + ACTIONS(55), 1, sym_comment, - ACTIONS(4002), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4004), 21, - anon_sym_SEMI, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(3999), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [69599] = 5, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2696), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1541), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [70132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(4001), 1, sym__concat, - STATE(1495), 1, + STATE(1411), 1, aux_sym_concatenation_repeat1, - ACTIONS(3886), 2, + ACTIONS(1037), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3888), 19, + ACTIONS(1035), 18, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -73113,19 +73602,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [69634] = 5, + [70167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(4004), 1, sym__concat, - STATE(1495), 1, + STATE(1411), 1, aux_sym_concatenation_repeat1, - ACTIONS(3880), 2, + ACTIONS(1042), 3, sym_file_descriptor, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3882), 19, + ACTIONS(1044), 18, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -73143,7 +73632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [69669] = 3, + [70202] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4006), 2, @@ -73171,7 +73660,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69700] = 3, + [70233] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4010), 2, @@ -73199,7 +73688,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69731] = 3, + [70264] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4014), 2, @@ -73227,35 +73716,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69762] = 3, - ACTIONS(3), 1, + [70295] = 16, + ACTIONS(55), 1, sym_comment, - ACTIONS(4018), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4020), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, anon_sym_BQUOTE, - anon_sym_AMP, - [69793] = 3, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(4018), 1, + anon_sym_esac, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2655), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1597), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [70352] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(4020), 1, + anon_sym_esac, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2685), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1535), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [70409] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4022), 2, @@ -73283,7 +73826,203 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69824] = 3, + [70440] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1123), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1125), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70471] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1127), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1129), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70502] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1228), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70533] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1167), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1169), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70564] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1255), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1257), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70595] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1035), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1037), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 1, + sym__concat, + ACTIONS(1157), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [70657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4026), 2, @@ -73311,37 +74050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, - sym__concat, - STATE(1495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3924), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3926), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [69890] = 3, + [70688] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4030), 2, @@ -73369,119 +74078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [69921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 1, - sym__concat, - ACTIONS(1144), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [69952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 1, - sym__concat, - ACTIONS(1148), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [69983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - sym__concat, - ACTIONS(1033), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [70014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - sym__concat, - ACTIONS(1152), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [70045] = 3, + [70719] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4034), 2, @@ -73509,7 +74106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [70076] = 3, + [70750] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4038), 2, @@ -73537,7 +74134,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [70107] = 3, + [70781] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4042), 2, @@ -73565,7 +74162,177 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [70138] = 3, + [70812] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1179), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1181), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70843] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1246), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70874] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1240), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1242), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70905] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1238), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70936] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1238), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [70967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym__concat, + STATE(1505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3879), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3881), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [71002] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4046), 2, @@ -73593,7 +74360,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [70169] = 3, + [71033] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4050), 2, @@ -73621,1906 +74388,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [70200] = 16, + [71064] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4056), 1, - anon_sym_esac, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2748), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1582), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70257] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4064), 1, - sym__concat, - STATE(1492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3916), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [70292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 1, - sym__concat, - ACTIONS(1156), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [70323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, - sym__concat, - ACTIONS(1160), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [70354] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3884), 1, - sym__concat, - STATE(1352), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1029), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1027), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70389] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1181), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1183), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4068), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4072), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4076), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4080), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4082), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4084), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70575] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4086), 1, - sym__special_character, - STATE(1431), 1, - aux_sym__literal_repeat1, - ACTIONS(1220), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1218), 17, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70610] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4089), 1, - anon_sym_esac, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2773), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1597), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70667] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4091), 1, - sym__special_character, - STATE(1431), 1, - aux_sym__literal_repeat1, - ACTIONS(3818), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(3816), 17, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70702] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1233), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1231), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70733] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1235), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70764] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1241), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1239), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4095), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4099), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70857] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1245), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1243), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4103), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70919] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1249), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1247), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3926), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [70981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4107), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [71012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 1, - sym__concat, - ACTIONS(1164), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 1, - sym__concat, - ACTIONS(1168), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71074] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1253), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1251), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [71105] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1229), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1227), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [71136] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4091), 1, - sym__special_character, - STATE(1431), 1, - aux_sym__literal_repeat1, - ACTIONS(3873), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(3871), 17, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [71171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4109), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4111), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [71202] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4113), 1, - sym__concat, - STATE(1450), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1035), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [71237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 1, - sym__concat, - ACTIONS(1177), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 1, - sym__concat, - STATE(1511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1055), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [71303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4120), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [71334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4124), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [71365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4126), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4128), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [71396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 1, - sym__concat, - ACTIONS(1181), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4132), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [71458] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4064), 1, - sym__concat, - STATE(1492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1067), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [71493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 1, - sym__concat, - ACTIONS(1198), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 1, - sym__concat, - ACTIONS(1198), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71555] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1210), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1208), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [71586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - sym__concat, - ACTIONS(1265), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4134), 1, - sym__special_character, - STATE(1471), 1, - aux_sym__literal_repeat1, - ACTIONS(3871), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3873), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [71652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - sym__concat, - ACTIONS(1261), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - sym__concat, - ACTIONS(1257), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 1, - sym__concat, - ACTIONS(1187), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 1, - sym__concat, - ACTIONS(1191), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71776] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4136), 1, - anon_sym_esac, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2640), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1554), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71833] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4138), 1, - anon_sym_esac, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2660), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1607), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71890] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3886), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3888), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [71925] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4140), 1, - sym__special_character, - STATE(1471), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1220), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [71960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 1, - sym__concat, - ACTIONS(1210), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [71991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - sym__concat, - ACTIONS(1229), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4143), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4145), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [72053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 1, - sym__concat, - ACTIONS(1253), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 1, - sym__concat, - ACTIONS(1249), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 1, - sym__concat, - ACTIONS(1245), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - sym__concat, - ACTIONS(1241), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4149), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [72208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4153), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [72239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3880), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3882), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [72274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym__concat, - ACTIONS(1237), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 1, - sym__concat, - ACTIONS(1233), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [72336] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1191), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1189), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72367] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1187), 4, + ACTIONS(1183), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -75545,15 +74416,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72398] = 3, + [71095] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1257), 4, + ACTIONS(1195), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1255), 19, + ACTIONS(1197), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -75573,15 +74444,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72429] = 3, + [71126] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1261), 4, + ACTIONS(1191), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1259), 19, + ACTIONS(1193), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -75601,69 +74472,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72460] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1265), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1263), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72491] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1160), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1162), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72522] = 3, + [71157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 2, + ACTIONS(4054), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3888), 21, + ACTIONS(4056), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -75685,15 +74500,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [72553] = 3, + [71188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4058), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4060), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [71219] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1156), 4, + ACTIONS(1187), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1158), 19, + ACTIONS(1189), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -75713,20 +74556,643 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72584] = 5, + [71250] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4155), 1, + ACTIONS(1157), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1155), 19, + sym_file_descriptor, sym__concat, - STATE(1450), 1, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [71281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4062), 1, + sym__special_character, + STATE(1405), 1, + aux_sym__literal_repeat1, + ACTIONS(3814), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3816), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [71316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4064), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4066), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [71347] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1161), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1159), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [71378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1076), 23, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + anon_sym_AMP, + [71407] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 1, + sym__concat, + STATE(1412), 1, aux_sym_concatenation_repeat1, - ACTIONS(1055), 5, + ACTIONS(3962), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3964), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [71442] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1173), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1171), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [71473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4070), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [71504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym__concat, + STATE(1505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3947), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3949), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [71539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3962), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3964), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [71570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4074), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [71601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4076), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4078), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [71632] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1175), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1177), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [71663] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1163), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1165), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [71694] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + sym__concat, + STATE(1505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3962), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3964), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [71729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 1, + sym__concat, + ACTIONS(1131), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 1, + sym__concat, + ACTIONS(1135), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym__concat, + ACTIONS(1139), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 1, + sym__concat, + ACTIONS(1143), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 1, + sym__concat, + ACTIONS(1147), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 1, + sym__concat, + ACTIONS(1163), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 1, + sym__concat, + ACTIONS(1175), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [71946] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4080), 1, + sym__concat, + STATE(1467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1057), 16, + ACTIONS(1037), 16, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75743,101 +75209,577 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [72619] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1200), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72650] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1200), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72681] = 5, + [71981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1171), 1, sym__concat, - STATE(1316), 1, + ACTIONS(1173), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 1, + sym__concat, + ACTIONS(1161), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4085), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4087), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4089), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4093), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4097), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 1, + sym__concat, + ACTIONS(1187), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4101), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4105), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 1, + sym__concat, + ACTIONS(1191), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym__concat, + ACTIONS(1195), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72322] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1147), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1149), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [72353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + sym__concat, + ACTIONS(1236), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + sym__concat, + ACTIONS(1236), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 1, + sym__concat, + ACTIONS(1240), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4109), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 1, + sym__concat, + ACTIONS(1244), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4111), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4113), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + sym__concat, + ACTIONS(1127), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72570] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4115), 1, + sym__concat, + STATE(1522), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1055), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(1076), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1078), 16, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [72716] = 3, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [72605] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1177), 4, + ACTIONS(1143), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1179), 19, + ACTIONS(1145), 19, sym_file_descriptor, sym__concat, sym_variable_name, @@ -75857,41 +75799,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72747] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1152), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1154), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72778] = 3, + [72636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(4117), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4161), 21, + ACTIONS(4119), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -75913,350 +75827,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [72809] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1033), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1035), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72840] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1148), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1150), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72871] = 3, + [72667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3882), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [72902] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, + ACTIONS(4062), 1, sym__special_character, - ACTIONS(4163), 1, - anon_sym_esac, - STATE(2343), 1, + STATE(1405), 1, aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2685), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1544), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72959] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1168), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1170), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72990] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4165), 1, - anon_sym_esac, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2669), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1543), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73047] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1144), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1146), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [73078] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1164), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1166), 19, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [73109] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4167), 1, - anon_sym_esac, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2644), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1541), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73166] = 16, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4054), 1, - sym_word, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4169), 1, - anon_sym_esac, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2645), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4060), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1542), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73223] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - sym__concat, - STATE(1452), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3924), 3, + ACTIONS(3846), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3926), 18, + ACTIONS(3848), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -76275,19 +75857,419 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [73258] = 5, + [72702] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1139), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1141), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [72733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 1, + sym__concat, + ACTIONS(1255), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 1, + sym__concat, + ACTIONS(1226), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72795] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4121), 1, + sym__special_character, + STATE(1494), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1250), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [72830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 1, + sym__concat, + ACTIONS(1123), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [72861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4126), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72892] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1135), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1137), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [72923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 1, + sym__concat, + STATE(1412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3879), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3881), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [72958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4128), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4130), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [72989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 1, + sym__concat, + STATE(1412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3947), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3949), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [73024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 1, + sym__concat, + ACTIONS(1167), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [73055] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4115), 1, + sym__concat, + STATE(1522), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4132), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [73090] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1131), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1133), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [73121] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1153), 19, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [73152] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4134), 1, - sym__special_character, - STATE(1471), 1, - aux_sym__literal_repeat1, - ACTIONS(3836), 3, + sym__concat, + STATE(1349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1042), 2, sym_file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3838), 18, + ACTIONS(1044), 19, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -76305,18 +76287,438 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [73293] = 5, + [73187] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1048), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1050), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [73222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, + ACTIONS(3879), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3881), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3949), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73284] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(4136), 1, + anon_sym_esac, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2657), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1572), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [73341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 1, sym__concat, - STATE(1511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1035), 3, + ACTIONS(1183), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [73372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4140), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73403] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(4142), 1, + anon_sym_esac, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2658), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1573), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [73460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + sym__concat, + ACTIONS(1151), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [73491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4146), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4148), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4150), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4154), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4158), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4160), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4162), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4166), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4062), 1, + sym__special_character, + STATE(1405), 1, + aux_sym__literal_repeat1, + ACTIONS(3806), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1033), 18, + ACTIONS(3808), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -76335,7 +76737,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [73328] = 3, + [73712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4168), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4170), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [73743] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4172), 1, + sym__concat, + STATE(1467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [73778] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4174), 2, @@ -76363,136 +76823,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [73359] = 5, + [73809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4134), 1, - sym__special_character, - STATE(1471), 1, - aux_sym__literal_repeat1, - ACTIONS(3816), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3818), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [73394] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1152), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1154), 17, + ACTIONS(1037), 1, sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1035), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, + anon_sym_EQ, anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [73424] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1233), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1231), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [73454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1144), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [73484] = 4, + [73840] = 5, ACTIONS(55), 1, sym_comment, ACTIONS(4178), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, + sym__special_character, + STATE(1494), 1, + aux_sym__literal_repeat1, + ACTIONS(3848), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(3846), 17, sym_file_descriptor, sym_variable_name, + anon_sym_RPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -76502,15 +76881,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73516] = 3, + [73875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 4, + ACTIONS(1181), 1, + sym__concat, + ACTIONS(1179), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [73906] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4178), 1, + sym__special_character, + STATE(1494), 1, + aux_sym__literal_repeat1, + ACTIONS(3808), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(3806), 17, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [73941] = 16, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3970), 1, + sym_word, + ACTIONS(3974), 1, + sym__special_character, + ACTIONS(4180), 1, + anon_sym_esac, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2674), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3976), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1578), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [73998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1148), 18, + ACTIONS(1035), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -76529,24 +77007,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [73546] = 5, + [74028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1179), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [74058] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4180), 1, - sym__concat, - STATE(1635), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 6, + ACTIONS(1226), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - sym__special_character, - ACTIONS(1067), 14, + ACTIONS(1228), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -76555,37 +77057,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [73580] = 3, - ACTIONS(3), 1, + [74088] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(1035), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1033), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1127), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [73610] = 4, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1129), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74118] = 4, ACTIONS(55), 1, sym_comment, ACTIONS(4182), 1, @@ -76595,7 +77098,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -76613,7 +77116,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73642] = 4, + [74150] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1161), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1159), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74180] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2696), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74232] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1157), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1155), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74262] = 4, ACTIONS(55), 1, sym_comment, ACTIONS(4184), 1, @@ -76623,7 +77218,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -76641,17 +77236,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73674] = 4, + [74294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4186), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [74330] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4196), 1, anon_sym_RPAREN, ACTIONS(951), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -76669,201 +77294,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4188), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [73742] = 5, + [74362] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4064), 1, - sym__concat, - STATE(1492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 6, - anon_sym_EQ, + ACTIONS(3881), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(3879), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, sym__special_character, - ACTIONS(1067), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [73776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1152), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [73806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1156), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [73836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1160), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [73866] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [74392] = 14, ACTIONS(55), 1, sym_comment, - ACTIONS(1164), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1166), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [73896] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1144), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1146), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [73926] = 4, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2706), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74444] = 4, ACTIONS(55), 1, sym_comment, ACTIONS(4198), 1, @@ -76873,7 +77369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -76891,74 +77387,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73958] = 6, - ACTIONS(3), 1, + [74476] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4200), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1175), 5, anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1177), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, anon_sym_DASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, sym_test_operator, - [73994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1164), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74024] = 4, + [74506] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(4200), 1, anon_sym_RPAREN, ACTIONS(951), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -76976,70 +77442,160 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74056] = 5, + [74538] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(3947), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [74568] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1167), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1169), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74598] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1255), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1257), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74628] = 14, ACTIONS(55), 1, sym_comment, ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4206), 1, + anon_sym_DOLLAR, + ACTIONS(4208), 1, sym__special_character, - STATE(1535), 1, + ACTIONS(4210), 1, + anon_sym_DQUOTE, + ACTIONS(4212), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4214), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4216), 1, + anon_sym_BQUOTE, + ACTIONS(4220), 1, + sym__empty_value, + STATE(638), 1, aux_sym__literal_repeat1, - ACTIONS(1220), 6, - anon_sym_PIPE, + ACTIONS(4218), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(681), 2, + sym_concatenation, + sym_array, + ACTIONS(4202), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(375), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74680] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1139), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1218), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [74090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [74118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 4, - sym_file_descriptor, + ACTIONS(1141), 17, sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 3, + sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1168), 18, + ACTIONS(1076), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -77057,18 +77613,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + sym__special_character, anon_sym_AMP, - [74148] = 4, + [74740] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(4209), 1, + ACTIONS(4222), 1, anon_sym_RPAREN, ACTIONS(951), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -77086,23 +77643,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74180] = 5, + [74772] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4115), 1, sym__concat, - STATE(1721), 1, + STATE(1522), 1, aux_sym_concatenation_repeat1, - ACTIONS(1069), 5, + ACTIONS(1076), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1067), 15, - anon_sym_RPAREN, + sym__special_character, + ACTIONS(1078), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -77113,250 +77671,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym__special_character, sym_test_operator, - [74214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [74242] = 14, + [74806] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2669), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74294] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2685), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74346] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2692), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74398] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2759), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1177), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1181), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74510] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1168), 5, + ACTIONS(1163), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1170), 17, + ACTIONS(1165), 17, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -77374,225 +77699,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [74540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74570] = 3, + [74836] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(1148), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1150), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [74600] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4215), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, + ACTIONS(4224), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [74632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1198), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1265), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1261), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74722] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, + STATE(1554), 1, aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2748), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1248), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1250), 14, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - anon_sym_EQ, anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -77600,82 +77728,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - anon_sym_AMP, - [74802] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4217), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [74834] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(393), 1, - anon_sym_DOLLAR, - ACTIONS(4221), 1, - anon_sym_LPAREN, - ACTIONS(4223), 1, - sym__special_character, - ACTIONS(4225), 1, - anon_sym_DQUOTE, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, - anon_sym_BQUOTE, - ACTIONS(4235), 1, - sym__empty_value, - STATE(299), 1, - aux_sym__literal_repeat1, - ACTIONS(4233), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(605), 2, - sym_concatenation, - sym_array, - ACTIONS(4219), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(245), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74886] = 3, + [74870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 4, + ACTIONS(1133), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1257), 18, + ACTIONS(1131), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -77694,1510 +77755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [74916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1187), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1191), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [74976] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4237), 1, - sym__special_character, - STATE(1561), 1, - aux_sym__literal_repeat1, - ACTIONS(1220), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1218), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [75010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1210), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75040] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1229), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1253), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1249), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1245), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1241), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1237), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1233), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [75282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1069), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [75312] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4242), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75344] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4244), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75376] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(535), 1, - sym_word, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4250), 1, - sym_raw_string, - ACTIONS(4252), 1, - anon_sym_POUND, - STATE(2012), 1, - sym_string, - ACTIONS(4246), 4, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(4254), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 8, - anon_sym_RPAREN, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [75418] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4256), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75450] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75482] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_LPAREN, - ACTIONS(4264), 1, - anon_sym_DOLLAR, - ACTIONS(4266), 1, - sym__special_character, - ACTIONS(4268), 1, - anon_sym_DQUOTE, - ACTIONS(4270), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4272), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4274), 1, - anon_sym_BQUOTE, - ACTIONS(4278), 1, - sym__empty_value, - STATE(622), 1, - aux_sym__literal_repeat1, - ACTIONS(4276), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(668), 2, - sym_concatenation, - sym_array, - ACTIONS(4260), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(329), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75534] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1431), 1, - anon_sym_DQUOTE, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, - anon_sym_DOLLAR, - ACTIONS(4286), 1, - sym__special_character, - ACTIONS(4288), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4290), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4292), 1, - anon_sym_BQUOTE, - ACTIONS(4296), 1, - sym__empty_value, - STATE(1609), 1, - aux_sym__literal_repeat1, - ACTIONS(4294), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1639), 2, - sym_concatenation, - sym_array, - ACTIONS(4280), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1424), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75586] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4298), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75618] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4300), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75650] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4302), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [75686] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2694), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75738] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4306), 1, - anon_sym_LPAREN, - ACTIONS(4308), 1, - anon_sym_DOLLAR, - ACTIONS(4310), 1, - sym__special_character, - ACTIONS(4312), 1, - anon_sym_DQUOTE, - ACTIONS(4314), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4316), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4318), 1, - anon_sym_BQUOTE, - ACTIONS(4322), 1, - sym__empty_value, - STATE(542), 1, - aux_sym__literal_repeat1, - ACTIONS(4320), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(666), 2, - sym_concatenation, - sym_array, - ACTIONS(4304), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(455), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75790] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4324), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75822] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4326), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [75858] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4328), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75890] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75922] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1035), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [75952] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4332), 1, - sym__concat, - STATE(1589), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1035), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [75986] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(3886), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76016] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4335), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76048] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1177), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76078] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1181), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1183), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76108] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1200), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76138] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1200), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76168] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1156), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1158), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76198] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2631), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76250] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4337), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76282] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1160), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1162), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76312] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1265), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76342] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4339), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4341), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [76402] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1261), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1259), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76432] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(3880), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76462] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1067), 18, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76492] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1257), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1255), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76522] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2343), 1, - aux_sym__literal_repeat1, - STATE(2414), 1, - sym_concatenation, - STATE(2773), 1, - sym_last_case_item, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4060), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2320), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76574] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1187), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1185), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76604] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4091), 1, - sym__special_character, - STATE(1431), 1, - aux_sym__literal_repeat1, - ACTIONS(1202), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1204), 16, - 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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76638] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4343), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [76674] = 3, + [74900] = 3, ACTIONS(55), 1, sym_comment, ACTIONS(1191), 5, @@ -79206,6 +77764,146 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1193), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74930] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4227), 1, + sym__special_character, + STATE(1557), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1250), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [74964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1135), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [74994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1139), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4230), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [75060] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1187), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(1189), 17, sym__concat, anon_sym_RPAREN_RPAREN, @@ -79224,138 +77922,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [76704] = 5, + [75090] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(4347), 1, - sym__special_character, - STATE(1561), 1, - aux_sym__literal_repeat1, - ACTIONS(3958), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4345), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76738] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1210), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1208), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76768] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1229), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1227), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76798] = 14, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4351), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_DOLLAR, - ACTIONS(4355), 1, - sym__special_character, - ACTIONS(4357), 1, - anon_sym_DQUOTE, - ACTIONS(4359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4363), 1, - anon_sym_BQUOTE, - ACTIONS(4367), 1, - sym__empty_value, - STATE(573), 1, - aux_sym__literal_repeat1, - ACTIONS(4365), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(667), 2, - sym_concatenation, - sym_array, - ACTIONS(4349), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(361), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76850] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4369), 1, + ACTIONS(4232), 1, anon_sym_RPAREN, ACTIONS(951), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -79373,282 +77950,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76882] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4371), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76914] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1253), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1251), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76944] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1249), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1247), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [76974] = 2, + [75122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4373), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [77002] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1245), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [77032] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4375), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [77068] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_QMARK, - ACTIONS(4192), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4196), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4377), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4190), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [77104] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, + ACTIONS(1145), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1143), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [77136] = 14, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75152] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(455), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - anon_sym_LPAREN, - ACTIONS(4385), 1, - sym__special_character, - ACTIONS(4387), 1, - anon_sym_DQUOTE, - ACTIONS(4389), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4391), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4393), 1, - anon_sym_BQUOTE, - ACTIONS(4397), 1, - sym__empty_value, - STATE(362), 1, - aux_sym__literal_repeat1, - ACTIONS(4395), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(657), 2, - sym_concatenation, - sym_array, - ACTIONS(4381), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(234), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77188] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1241), 5, + ACTIONS(4234), 1, + sym__concat, + STATE(1671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1076), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1239), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1078), 15, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -79657,86 +78002,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - [77218] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4399), 1, - anon_sym_RPAREN, - ACTIONS(951), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(959), 17, - 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, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [77250] = 14, + sym_test_operator, + [75186] = 14, ACTIONS(55), 1, sym_comment, ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(4403), 1, + ACTIONS(4238), 1, anon_sym_LPAREN, - ACTIONS(4405), 1, + ACTIONS(4240), 1, sym__special_character, - ACTIONS(4407), 1, + ACTIONS(4242), 1, anon_sym_DQUOTE, - ACTIONS(4409), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4411), 1, + ACTIONS(4246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4413), 1, + ACTIONS(4248), 1, anon_sym_BQUOTE, - ACTIONS(4417), 1, + ACTIONS(4252), 1, sym__empty_value, - STATE(354), 1, + STATE(433), 1, aux_sym__literal_repeat1, - ACTIONS(4415), 2, + ACTIONS(4250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(639), 2, + STATE(625), 2, sym_concatenation, sym_array, - ACTIONS(4401), 3, + ACTIONS(4236), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(273), 6, + STATE(243), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [77302] = 3, + [75238] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1237), 5, + ACTIONS(1123), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1235), 17, + ACTIONS(1125), 17, sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, @@ -79754,180 +78071,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [77332] = 3, - ACTIONS(3), 1, + [75268] = 5, + ACTIONS(55), 1, sym_comment, - ACTIONS(4014), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4016), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4178), 1, + sym__special_character, + STATE(1494), 1, + aux_sym__literal_repeat1, + ACTIONS(1209), 4, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1207), 16, + 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, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [77361] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4419), 1, - sym__special_character, - STATE(1634), 1, - aux_sym__literal_repeat1, - ACTIONS(3958), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4345), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [77394] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4421), 1, - sym__concat, - STATE(1632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1035), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [77427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - sym__concat, - STATE(1633), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1035), 10, - anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [77460] = 5, + sym_word, + [75302] = 14, ACTIONS(55), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, sym__special_character, - STATE(1634), 1, + STATE(2372), 1, aux_sym__literal_repeat1, - ACTIONS(1220), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1218), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [77493] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4430), 1, - sym__concat, - STATE(1632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1055), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1057), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [77526] = 3, + STATE(2459), 1, + sym_concatenation, + STATE(2791), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 3, + ACTIONS(1149), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4107), 18, + ACTIONS(1147), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -79946,15 +78165,177 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [77555] = 3, + [75384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4254), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [75420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1163), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75450] = 14, ACTIONS(55), 1, sym_comment, - ACTIONS(1356), 4, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2669), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75502] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2661), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1175), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75584] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4256), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1358), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -79972,14 +78353,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77584] = 3, + [75616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 3, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4258), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [75652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3926), 18, + ACTIONS(1173), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -79998,15 +78410,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [77613] = 3, + [75682] = 14, ACTIONS(55), 1, sym_comment, - ACTIONS(1029), 4, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2657), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75734] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2658), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75786] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4260), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(1027), 17, + ACTIONS(967), 17, sym_file_descriptor, sym_variable_name, anon_sym_GT_GT, @@ -80024,92 +78514,214 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77642] = 5, + [75818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(1159), 4, + sym_file_descriptor, sym__concat, - STATE(1633), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1055), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1161), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1157), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1187), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [75908] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4262), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1057), 10, - anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [77675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4050), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4052), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [77704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4176), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [77733] = 5, + sym_word, + [75940] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(4434), 1, + ACTIONS(4264), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, sym__special_character, - STATE(1659), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [75972] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(397), 1, + anon_sym_DOLLAR, + ACTIONS(4268), 1, + anon_sym_LPAREN, + ACTIONS(4270), 1, + sym__special_character, + ACTIONS(4272), 1, + anon_sym_DQUOTE, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4278), 1, + anon_sym_BQUOTE, + ACTIONS(4282), 1, + sym__empty_value, + STATE(323), 1, + aux_sym__literal_repeat1, + ACTIONS(4280), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(656), 2, + sym_concatenation, + sym_array, + ACTIONS(4266), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(250), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1191), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76054] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4286), 1, + sym__special_character, + STATE(1557), 1, aux_sym__literal_repeat1, ACTIONS(3958), 5, anon_sym_EQ, @@ -80117,7 +78729,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4345), 14, + ACTIONS(4284), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [76088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1195), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [76146] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1195), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1197), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK_RBRACK, @@ -80129,23 +78821,1164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [77766] = 5, + [76176] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(4436), 1, + ACTIONS(4290), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, sym__special_character, - STATE(1535), 1, - aux_sym__literal_repeat1, - ACTIONS(3958), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76208] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76240] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1183), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4345), 14, + ACTIONS(1185), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [76270] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_LPAREN, + ACTIONS(4298), 1, + anon_sym_DOLLAR, + ACTIONS(4300), 1, + sym__special_character, + ACTIONS(4302), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4308), 1, + anon_sym_BQUOTE, + ACTIONS(4312), 1, + sym__empty_value, + STATE(584), 1, + aux_sym__literal_repeat1, + ACTIONS(4310), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(691), 2, + sym_concatenation, + sym_array, + ACTIONS(4294), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(453), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76322] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4314), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76354] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(2459), 1, + sym_concatenation, + STATE(2711), 1, + sym_last_case_item, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1236), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [76464] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4318), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76496] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4320), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1236), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76558] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4322), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1240), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76620] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4324), 1, + sym__concat, + STATE(1679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1076), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + sym__special_character, + ACTIONS(1078), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [76654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1244), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76684] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1393), 1, + anon_sym_DQUOTE, + ACTIONS(4328), 1, + anon_sym_LPAREN, + ACTIONS(4330), 1, + anon_sym_DOLLAR, + ACTIONS(4332), 1, + sym__special_character, + ACTIONS(4334), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4336), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4338), 1, + anon_sym_BQUOTE, + ACTIONS(4342), 1, + sym__empty_value, + STATE(1567), 1, + aux_sym__literal_repeat1, + ACTIONS(4340), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1729), 2, + sym_concatenation, + sym_array, + ACTIONS(4326), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1506), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76736] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1135), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1137), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [76766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1255), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1127), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [76826] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4344), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76858] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1143), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1145), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [76888] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1131), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [76918] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4346), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76950] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4348), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [76982] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4352), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [77050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1226), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [77080] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1151), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1153), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77110] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1238), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77140] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1147), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1149), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1123), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [77200] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1238), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77230] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4354), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1167), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [77292] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1240), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77322] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(485), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 1, + anon_sym_LPAREN, + ACTIONS(4360), 1, + sym__special_character, + ACTIONS(4362), 1, + anon_sym_DQUOTE, + ACTIONS(4364), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4366), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4368), 1, + anon_sym_BQUOTE, + ACTIONS(4372), 1, + sym__empty_value, + STATE(311), 1, + aux_sym__literal_repeat1, + ACTIONS(4370), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(670), 2, + sym_concatenation, + sym_array, + ACTIONS(4356), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(249), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [77402] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1244), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1246), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77432] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1179), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1181), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77462] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77494] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4378), 1, + sym__concat, + STATE(1632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 14, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80160,148 +79993,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [77799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4068), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [77828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4442), 1, - sym__concat, - ACTIONS(4438), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4440), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [77859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 1, - sym__concat, - ACTIONS(4444), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4446), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [77890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3880), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3882), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [77919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4161), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [77948] = 3, + [77528] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4341), 5, + ACTIONS(1035), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4450), 16, + ACTIONS(1037), 17, + sym__concat, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80318,35 +80020,460 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [77977] = 5, - ACTIONS(3), 1, + [77558] = 4, + ACTIONS(55), 1, sym_comment, - ACTIONS(4456), 1, - sym__concat, - STATE(1640), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4452), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(4381), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4454), 10, - anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [78010] = 3, + sym_word, + [77590] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1078), 18, + sym_file_descriptor, + sym_variable_name, + anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [77648] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4385), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [77708] = 14, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4389), 1, + anon_sym_LPAREN, + ACTIONS(4391), 1, + anon_sym_DOLLAR, + ACTIONS(4393), 1, + sym__special_character, + ACTIONS(4395), 1, + anon_sym_DQUOTE, + ACTIONS(4397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, + anon_sym_BQUOTE, + ACTIONS(4405), 1, + sym__empty_value, + STATE(531), 1, + aux_sym__literal_repeat1, + ACTIONS(4403), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(690), 2, + sym_concatenation, + sym_array, + ACTIONS(4387), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(457), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77760] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_RPAREN, + ACTIONS(951), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(967), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77792] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4409), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [77828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1183), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [77858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(535), 1, + sym_word, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4415), 1, + sym_raw_string, + ACTIONS(4417), 1, + anon_sym_POUND, + STATE(2061), 1, + sym_string, + ACTIONS(4411), 4, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(4419), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(537), 8, + anon_sym_RPAREN, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [77900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1151), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [77930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_QMARK, + ACTIONS(4190), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4194), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4421), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4188), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [77966] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1173), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1171), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [77996] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4288), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4423), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78025] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1183), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1185), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78054] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1151), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1153), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4042), 3, @@ -80372,43 +80499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [78039] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4460), 1, - anon_sym_RPAREN, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1661), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78088] = 3, + [78112] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4038), 3, @@ -80434,139 +80525,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [78117] = 3, - ACTIONS(3), 1, + [78141] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(4070), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4072), 18, - anon_sym_SEMI, + ACTIONS(1179), 6, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 1, - sym__concat, - ACTIONS(4474), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4476), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [78177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 1, - sym__concat, - ACTIONS(4480), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4482), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [78208] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4489), 1, - anon_sym_DOLLAR, - ACTIONS(4492), 1, - sym__special_character, - ACTIONS(4495), 1, - anon_sym_DQUOTE, - ACTIONS(4498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4501), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4504), 1, - anon_sym_BQUOTE, - STATE(2325), 1, - aux_sym__literal_repeat1, - STATE(2393), 1, - sym_concatenation, - ACTIONS(4507), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1658), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4486), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2344), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78257] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4510), 1, - sym__special_character, - STATE(1659), 1, - aux_sym__literal_repeat1, - ACTIONS(1220), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1218), 14, + ACTIONS(1181), 15, + sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -80578,497 +80551,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [78290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4034), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4036), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78319] = 13, + [78170] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4513), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - STATE(2010), 1, + ACTIONS(4428), 1, + anon_sym_DOLLAR, + ACTIONS(4431), 1, + sym__special_character, + ACTIONS(4434), 1, + anon_sym_DQUOTE, + ACTIONS(4437), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4443), 1, + anon_sym_BQUOTE, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4472), 2, + ACTIONS(4446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1733), 2, + STATE(1653), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, + ACTIONS(4425), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2001), 6, + STATE(2022), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [78368] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1067), 15, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [78397] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1144), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1146), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3888), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78455] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1233), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1231), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78484] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4211), 1, - sym__concat, - STATE(1721), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3916), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3970), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3972), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78546] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1237), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1235), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4126), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4128), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3964), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78633] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1241), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1239), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78662] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1245), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4120), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4032), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4124), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78778] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4515), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1733), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4109), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4111), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78856] = 3, + [78219] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3966), 3, @@ -81094,154 +80613,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [78885] = 3, + [78248] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1249), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1247), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78914] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1253), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1251), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [78943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4026), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4028), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [78972] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, + ACTIONS(4413), 1, anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4517), 1, + ACTIONS(4451), 1, anon_sym_RPAREN, - STATE(2010), 1, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4472), 2, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1691), 2, + STATE(1653), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, + ACTIONS(4449), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2001), 6, + STATE(2022), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [79021] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1229), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1227), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79050] = 3, + [78297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 3, + ACTIONS(4050), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4024), 18, + ACTIONS(4052), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -81260,694 +80675,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [79079] = 3, + [78326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4004), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3974), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3976), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79137] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1210), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1208), 15, + ACTIONS(4465), 1, sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79166] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1067), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [79195] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1191), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1189), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4020), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79253] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4519), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1733), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79302] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1187), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1185), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79331] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1257), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1255), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79360] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1261), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1259), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79389] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4521), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1733), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79438] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1265), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4103), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4076), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79525] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1200), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79554] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1337), 17, - 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [79583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4012), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79612] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4373), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4523), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79641] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1200), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79670] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1181), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1183), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79699] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1177), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4132), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79757] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4525), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1732), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4143), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4145), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [79835] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1168), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1170), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4456), 1, - sym__concat, - STATE(1640), 1, + STATE(1718), 1, aux_sym_concatenation_repeat1, - ACTIONS(1069), 9, + ACTIONS(1076), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -81957,7 +80692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1067), 10, + ACTIONS(1078), 10, anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, @@ -81968,462 +80703,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [79897] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1164), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1166), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79926] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1160), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1162), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [79955] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4527), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1676), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80004] = 3, + [78359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4048), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80033] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1156), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1158), 15, + ACTIONS(4465), 1, sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80062] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1152), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1154), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80091] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1033), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1035), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4080), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4082), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4084), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80178] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1148), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1150), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80207] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4529), 1, - sym__concat, - STATE(1589), 1, + STATE(1718), 1, aux_sym_concatenation_repeat1, - ACTIONS(1055), 5, + ACTIONS(4467), 9, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1057), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80240] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4207), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4531), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80269] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4213), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4533), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80298] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4213), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4533), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80327] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, anon_sym_DOLLAR, - ACTIONS(4464), 1, sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4535), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1734), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4469), 10, + anon_sym_RBRACE, + anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80376] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, anon_sym_BQUOTE, - ACTIONS(4537), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1695), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80425] = 3, + [78392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 3, + ACTIONS(4475), 1, + sym__concat, + ACTIONS(4471), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4473), 11, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [78423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4008), 18, + ACTIONS(4036), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -82442,7 +80784,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [80454] = 3, + [78452] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4477), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1655), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4148), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4150), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [78530] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1123), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1125), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78559] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1035), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78588] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3978), 3, @@ -82468,272 +80924,2605 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [80483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4099), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3982), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3984), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80541] = 13, + [78617] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, - sym__special_character, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4539), 1, + ACTIONS(1226), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1228), 15, + sym__concat, anon_sym_RPAREN, - STATE(2010), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78646] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4324), 1, + sym__concat, + STATE(1679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4132), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78679] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4479), 1, + anon_sym_RPAREN, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4472), 2, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1733), 2, + STATE(1678), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, + ACTIONS(4449), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2001), 6, + STATE(2022), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [80590] = 13, + [78728] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, + ACTIONS(1167), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1169), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3987), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [78786] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4481), 1, + sym__concat, + STATE(1632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4176), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [78848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4076), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4078), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [78877] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1255), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1257), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, + sym__concat, + ACTIONS(4483), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4464), 1, sym__special_character, - ACTIONS(4466), 1, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4485), 11, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, + anon_sym_SLASH, anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [78937] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4489), 1, + sym__special_character, + STATE(1554), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4284), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [78970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4495), 1, + sym__concat, + ACTIONS(4491), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4493), 11, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [79001] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4497), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1653), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [79050] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4499), 1, + sym__concat, + STATE(1687), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3962), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3964), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79112] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1127), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1129), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79141] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4501), 1, + sym__special_character, + STATE(1685), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4284), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4058), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4060), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4046), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4048), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79232] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4503), 1, + sym__special_character, + STATE(1685), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1250), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4152), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4154), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79294] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4506), 1, + sym__concat, + STATE(1687), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1037), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79327] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1361), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1359), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [79356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 1, + sym__concat, + STATE(1689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1037), 10, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [79389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4030), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4032), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79418] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1374), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1372), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [79447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4074), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79476] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4512), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1653), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [79525] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1244), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1246), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79554] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1240), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3991), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3881), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79641] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1238), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79670] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1238), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4101), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4026), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4028), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3949), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79786] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1195), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1197), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4085), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79844] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1191), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1193), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4109), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79902] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1187), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1189), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79931] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1157), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1155), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [79960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4119), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [79989] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1161), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1159), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4158), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80047] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1173), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1171), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4087), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4089), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80105] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4514), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1693), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80154] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4516), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1653), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80203] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4518), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1725), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4093), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 1, + sym__concat, + STATE(1689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1042), 10, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4166), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4070), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3995), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80401] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4234), 1, + sym__concat, + STATE(1671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4132), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4126), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4064), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4066), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80492] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4522), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1653), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4140), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4128), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4130), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80599] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1175), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1177), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80628] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1048), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + ACTIONS(1050), 17, + 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [80657] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1163), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1165), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80686] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1147), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1149), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80715] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1143), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1145), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80744] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1139), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1141), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80773] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1135), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1137), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80802] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1131), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [80831] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4524), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1759), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4006), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4008), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4097), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80938] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1078), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [80967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4530), 1, + sym__concat, + ACTIONS(4526), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4528), 11, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80998] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + sym__special_character, ACTIONS(4541), 1, - anon_sym_RPAREN, - STATE(2010), 1, - aux_sym__literal_repeat1, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1733), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2001), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80639] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3931), 1, - anon_sym_RPAREN, - ACTIONS(4546), 1, - anon_sym_DOLLAR, - ACTIONS(4549), 1, - sym__special_character, - ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(4555), 1, + ACTIONS(4544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4558), 1, + ACTIONS(4547), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4561), 1, + ACTIONS(4550), 1, anon_sym_BQUOTE, - STATE(2010), 1, + STATE(2361), 1, aux_sym__literal_repeat1, - ACTIONS(4564), 2, + STATE(2506), 1, + sym_concatenation, + ACTIONS(4553), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1733), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4543), 3, + STATE(1741), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4532), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2001), 6, + STATE(2380), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [80688] = 13, + [81047] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4464), 1, + ACTIONS(4374), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4556), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [81076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4146), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81105] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4558), 1, sym__special_character, - ACTIONS(4466), 1, + STATE(1749), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4284), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [81138] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4383), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [81167] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1078), 15, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [81196] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4383), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [81225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4105), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81254] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4562), 1, + sym__special_character, + STATE(1749), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1250), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [81287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4024), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4160), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4162), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81345] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, + ACTIONS(4459), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4461), 1, + anon_sym_BQUOTE, + ACTIONS(4565), 1, + anon_sym_RPAREN, + STATE(2084), 1, + aux_sym__literal_repeat1, + ACTIONS(4463), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2022), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4016), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4054), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4056), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4168), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4170), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4012), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_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, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81510] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4461), 1, anon_sym_BQUOTE, ACTIONS(4567), 1, anon_sym_RPAREN, - STATE(2010), 1, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4472), 2, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1733), 2, + STATE(1653), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, + ACTIONS(4449), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2001), 6, + STATE(2022), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [80737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3998), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4000), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80766] = 13, + [81559] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4248), 1, + ACTIONS(4316), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4569), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [81588] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4413), 1, anon_sym_DQUOTE, - ACTIONS(4462), 1, + ACTIONS(4453), 1, anon_sym_DOLLAR, - ACTIONS(4464), 1, + ACTIONS(4455), 1, sym__special_character, - ACTIONS(4466), 1, + ACTIONS(4457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, + ACTIONS(4459), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4461), 1, anon_sym_BQUOTE, - ACTIONS(4569), 1, + ACTIONS(4571), 1, anon_sym_RPAREN, - STATE(2010), 1, + STATE(2084), 1, aux_sym__literal_repeat1, - ACTIONS(4472), 2, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1731), 2, + STATE(1653), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4458), 3, + ACTIONS(4449), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2001), 6, + STATE(2022), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [80815] = 3, + [81637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 3, + ACTIONS(4111), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4095), 18, + ACTIONS(4113), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -82752,203 +83541,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [80844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4153), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3986), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3988), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3994), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3996), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3990), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3992), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80960] = 5, + [81666] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(4180), 1, - sym__concat, - STATE(1635), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3916), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [80993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4149), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81022] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4413), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4459), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4461), 1, anon_sym_BQUOTE, - STATE(2507), 1, + ACTIONS(4573), 1, + anon_sym_RPAREN, + STATE(2084), 1, aux_sym__literal_repeat1, - STATE(2754), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4571), 3, + STATE(1757), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4449), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2518), 6, + STATE(2022), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81070] = 3, + [81715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 9, + ACTIONS(4575), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -82958,817 +83590,232 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1251), 11, - sym__concat, + ACTIONS(4577), 11, anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81098] = 13, + [81743] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(213), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(217), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2466), 1, - aux_sym__literal_repeat1, - STATE(2681), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4587), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2468), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1162), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [81174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1158), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [81202] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2465), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2474), 1, - aux_sym__literal_repeat1, - STATE(2690), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4589), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81250] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1152), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1154), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81278] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1177), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81306] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1035), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81334] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_DOLLAR, - ACTIONS(215), 1, - anon_sym_DQUOTE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(221), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(1354), 1, + ACTIONS(1368), 1, sym__special_character, - ACTIONS(4593), 1, + ACTIONS(4581), 1, sym_regex, - STATE(399), 1, + STATE(315), 1, aux_sym__literal_repeat1, - STATE(637), 1, + STATE(640), 1, sym_concatenation, - ACTIONS(225), 2, + ACTIONS(227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4591), 3, + ACTIONS(4579), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(256), 6, + STATE(238), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81382] = 3, + [81791] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1181), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1183), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1152), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1154), 11, - sym__concat, + ACTIONS(1709), 1, anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [81438] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1067), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81466] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1148), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1150), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81494] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2461), 1, + STATE(2452), 1, aux_sym__literal_repeat1, - STATE(2751), 1, + STATE(2780), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4595), 3, + ACTIONS(4583), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2455), 6, + STATE(2451), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81542] = 13, + [81839] = 13, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, ACTIONS(55), 1, sym_comment, - ACTIONS(1959), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(1357), 1, sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2496), 1, + ACTIONS(4601), 1, + sym_regex, + STATE(383), 1, aux_sym__literal_repeat1, - STATE(2792), 1, + STATE(634), 1, sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4597), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2498), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81590] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2482), 1, - aux_sym__literal_repeat1, - STATE(2777), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4599), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2484), 6, + STATE(259), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81638] = 3, + [81887] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1168), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1170), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81666] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1144), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1146), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81694] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2241), 1, + ACTIONS(3025), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2471), 1, + STATE(2445), 1, aux_sym__literal_repeat1, - STATE(2687), 1, + STATE(2671), 1, sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4601), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2469), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81742] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2493), 1, - aux_sym__literal_repeat1, - STATE(2713), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4603), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2491), 6, + STATE(2446), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81790] = 13, + [81935] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1671), 1, + ACTIONS(1833), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2396), 1, + STATE(2539), 1, aux_sym__literal_repeat1, - STATE(2717), 1, + STATE(2820), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4605), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2458), 6, + STATE(2546), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81838] = 3, + [81983] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1164), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1166), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1033), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1035), 11, - sym__concat, + ACTIONS(2787), 1, anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [81894] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2504), 1, + STATE(2425), 1, aux_sym__literal_repeat1, - STATE(2721), 1, + STATE(2803), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4607), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2502), 6, + STATE(2426), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [81942] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1200), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [81970] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2689), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4609), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2405), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82018] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2413), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2488), 1, - aux_sym__literal_repeat1, - STATE(2707), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4611), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2490), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82066] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1200), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82094] = 3, + [82031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 9, + ACTIONS(4609), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -83778,308 +83825,172 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1150), 11, - sym__concat, + ACTIONS(4611), 11, anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, anon_sym_POUND, anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [82122] = 3, + [82059] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1156), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1158), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82150] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2557), 1, + ACTIONS(2025), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2446), 1, + STATE(2502), 1, aux_sym__literal_repeat1, - STATE(2745), 1, + STATE(2817), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4613), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2435), 6, + STATE(2517), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82198] = 13, + [82107] = 12, ACTIONS(55), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(3928), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4617), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4619), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4625), 1, anon_sym_BQUOTE, - STATE(2399), 1, + STATE(1994), 1, aux_sym__literal_repeat1, - STATE(2715), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1361), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, ACTIONS(4615), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2398), 6, + STATE(1980), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1144), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1146), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82274] = 13, + [82153] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(2387), 1, + ACTIONS(3041), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2497), 1, + STATE(2510), 1, aux_sym__literal_repeat1, STATE(2714), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4617), 3, + ACTIONS(4629), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2415), 6, + STATE(2464), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82322] = 3, + [82201] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1160), 5, + ACTIONS(1076), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1162), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82350] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1261), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1259), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82378] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1793), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(1078), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82229] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2771), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2412), 1, + STATE(2483), 1, aux_sym__literal_repeat1, - STATE(2678), 1, + STATE(2805), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4619), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2410), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82426] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1257), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1255), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82454] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1605), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2421), 1, - aux_sym__literal_repeat1, - STATE(2725), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4621), 3, + ACTIONS(4631), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -84090,211 +84001,340 @@ static uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [82502] = 13, + [82277] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2107), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2429), 1, + aux_sym__literal_repeat1, + STATE(2802), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4633), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2428), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4473), 11, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82353] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2798), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4635), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2421), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82401] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1949), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, anon_sym_BQUOTE, STATE(2441), 1, aux_sym__literal_repeat1, - STATE(2639), 1, + STATE(2789), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4623), 3, + ACTIONS(4637), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2443), 6, + STATE(2439), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [82550] = 13, + [82449] = 7, ACTIONS(55), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2460), 1, - aux_sym__literal_repeat1, - STATE(2676), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4625), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2394), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4627), 9, - anon_sym_EQ, - anon_sym_DASH, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4639), 2, + anon_sym_RPAREN_RPAREN, anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4629), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4633), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1166), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4440), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4444), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4446), 11, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82738] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1187), 5, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1185), 15, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [82485] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2460), 1, + aux_sym__literal_repeat1, + STATE(2777), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4651), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2458), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4528), 11, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82561] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2424), 1, + aux_sym__literal_repeat1, + STATE(2804), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4653), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2423), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82609] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(1355), 1, + sym__special_character, + ACTIONS(4657), 1, + sym_regex, + STATE(478), 1, + aux_sym__literal_repeat1, + STATE(500), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4655), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(241), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82657] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1889), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2531), 1, + aux_sym__literal_repeat1, + STATE(2736), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4659), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2520), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82705] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1135), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1137), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84310,10 +84350,305 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [82766] = 3, + [82733] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1191), 5, + ACTIONS(1139), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1141), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82761] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1143), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1145), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82789] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1147), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1149), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82817] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1163), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1165), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82845] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2448), 1, + aux_sym__literal_repeat1, + STATE(2775), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4661), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2497), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82893] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1175), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1177), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82921] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1173), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1171), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82949] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1161), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1159), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [82977] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1157), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1155), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [83005] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1238), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [83033] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2431), 1, + aux_sym__literal_repeat1, + STATE(2697), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4663), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2515), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83081] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1187), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84335,60 +84670,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [82794] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1210), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1208), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82822] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1229), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1227), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [82850] = 3, + [83109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 9, + ACTIONS(1127), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84398,7 +84683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1208), 11, + ACTIONS(1129), 11, sym__concat, anon_sym_RBRACE, anon_sym_DQUOTE, @@ -84410,182 +84695,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [82878] = 13, + [83137] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2509), 1, - aux_sym__literal_repeat1, - STATE(2663), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4635), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2511), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82926] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2395), 1, - aux_sym__literal_repeat1, - STATE(2716), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4637), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2397), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82974] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2675), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2404), 1, - aux_sym__literal_repeat1, - STATE(2703), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4639), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2403), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4645), 1, - sym__special_character, - STATE(1815), 1, - aux_sym__literal_repeat1, - ACTIONS(4641), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(4643), 10, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83054] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3899), 1, - anon_sym_DOLLAR, - ACTIONS(4649), 1, - sym__special_character, - ACTIONS(4651), 1, - anon_sym_DQUOTE, - ACTIONS(4653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4657), 1, - anon_sym_BQUOTE, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(4659), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4647), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1965), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83100] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1253), 5, + ACTIONS(1191), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1251), 15, + ACTIONS(1193), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84601,185 +84720,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [83128] = 13, + [83165] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1679), 1, + ACTIONS(1999), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2515), 1, + STATE(2491), 1, aux_sym__literal_repeat1, - STATE(2761), 1, + STATE(2818), 1, sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4661), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2510), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83176] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1639), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2494), 1, - aux_sym__literal_repeat1, - STATE(2781), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4663), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2495), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83224] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1489), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2513), 1, - aux_sym__literal_repeat1, - STATE(2779), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4665), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2517), 6, + STATE(2503), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83272] = 13, + [83213] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2845), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2432), 1, + STATE(2455), 1, aux_sym__literal_repeat1, - STATE(2646), 1, + STATE(2778), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4667), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2434), 6, + STATE(2457), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83320] = 13, - ACTIONS(39), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(51), 1, - anon_sym_BQUOTE, + [83261] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1368), 1, + ACTIONS(2285), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4671), 1, - sym_regex, - STATE(416), 1, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2536), 1, aux_sym__literal_repeat1, - STATE(602), 1, + STATE(2726), 1, sym_concatenation, - ACTIONS(53), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4669), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(257), 6, + STATE(2542), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [83368] = 3, + [83309] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2861), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2469), 1, + aux_sym__literal_repeat1, + STATE(2773), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4671), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2474), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 9, + ACTIONS(1167), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84789,7 +84873,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1170), 11, + ACTIONS(1169), 11, sym__concat, anon_sym_RBRACE, anon_sym_DQUOTE, @@ -84801,411 +84885,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83396] = 13, + [83385] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1775), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2485), 1, + STATE(2461), 1, aux_sym__literal_repeat1, - STATE(2778), 1, + STATE(2666), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4673), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2489), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1177), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1179), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1181), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1183), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83500] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1825), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2428), 1, - aux_sym__literal_repeat1, - STATE(2648), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4675), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2425), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83548] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2479), 1, - aux_sym__literal_repeat1, - STATE(2771), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4677), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2477), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83596] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1245), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [83624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1200), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83652] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - sym__special_character, - STATE(1815), 1, - aux_sym__literal_repeat1, - ACTIONS(1220), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1218), 10, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83684] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1833), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2400), 1, - aux_sym__literal_repeat1, - STATE(2711), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4682), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2401), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1200), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83760] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1241), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1239), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [83788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1265), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1263), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83816] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2516), 1, - aux_sym__literal_repeat1, - STATE(2760), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4684), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2519), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83864] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2440), 1, - aux_sym__literal_repeat1, - STATE(2641), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4686), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, STATE(2437), 6, sym_string, sym_simple_expansion, @@ -85213,189 +84920,462 @@ static uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83912] = 3, + [83433] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1237), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1235), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [83940] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1233), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1231), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [83968] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1067), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [83996] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3021), 1, + ACTIONS(2211), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2508), 1, + STATE(2490), 1, + aux_sym__literal_repeat1, + STATE(2764), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4675), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2488), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83481] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1195), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1197), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [83509] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2723), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2438), 1, + aux_sym__literal_repeat1, + STATE(2792), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2436), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83557] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2481), 1, + aux_sym__literal_repeat1, + STATE(2662), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4679), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2432), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83605] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2518), 1, + aux_sym__literal_repeat1, + STATE(2821), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4681), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2543), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83653] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2501), 1, + aux_sym__literal_repeat1, + STATE(2753), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4683), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2499), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83701] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2449), 1, aux_sym__literal_repeat1, STATE(2673), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4688), 3, + ACTIONS(4685), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2417), 6, + STATE(2443), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84044] = 12, + [83749] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(3899), 1, - anon_sym_DOLLAR, - ACTIONS(4649), 1, - sym__special_character, - ACTIONS(4651), 1, - anon_sym_DQUOTE, - ACTIONS(4653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4657), 1, - anon_sym_BQUOTE, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(4659), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1358), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4647), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1965), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84090] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2233), 1, + ACTIONS(2443), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2419), 1, + STATE(2433), 1, aux_sym__literal_repeat1, - STATE(2756), 1, + STATE(2654), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4690), 3, + ACTIONS(4687), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2514), 6, + STATE(2427), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84138] = 3, + [83797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1261), 9, + ACTIONS(4689), 1, + sym__special_character, + STATE(1814), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1250), 10, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [83829] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2467), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2435), 1, + aux_sym__literal_repeat1, + STATE(2667), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4692), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2442), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83877] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1183), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1185), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [83905] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1151), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1153), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [83933] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2454), 1, + aux_sym__literal_repeat1, + STATE(2684), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4694), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2456), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83981] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2679), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2466), 1, + aux_sym__literal_repeat1, + STATE(2782), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4696), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2430), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1035), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85405,7 +85385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1259), 11, + ACTIONS(1037), 11, sym__concat, anon_sym_RBRACE, anon_sym_DQUOTE, @@ -85417,10 +85397,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84166] = 3, + [84057] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2385), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2492), 1, + aux_sym__literal_repeat1, + STATE(2749), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4698), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2513), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84105] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1541), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2463), 1, + aux_sym__literal_repeat1, + STATE(2687), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4700), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2462), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84153] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1255), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1257), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84181] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2477), 1, + aux_sym__literal_repeat1, + STATE(2663), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4702), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2476), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 9, + ACTIONS(1179), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85430,7 +85540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1255), 11, + ACTIONS(1181), 11, sym__concat, anon_sym_RBRACE, anon_sym_DQUOTE, @@ -85442,10 +85552,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84194] = 3, + [84257] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1238), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84285] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1240), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1242), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84313] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1244), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1246), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 9, + ACTIONS(1151), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1153), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84369] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1179), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1181), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1183), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85467,51 +85702,146 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84222] = 13, + [84425] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2301), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2431), 1, + STATE(2529), 1, aux_sym__literal_repeat1, - STATE(2647), 1, + STATE(2742), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4692), 3, + ACTIONS(4704), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2429), 6, + STATE(2528), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84270] = 3, + [84473] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1265), 5, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2470), 1, + aux_sym__literal_repeat1, + STATE(2691), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4706), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2473), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84521] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2489), 1, + aux_sym__literal_repeat1, + STATE(2702), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4708), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2484), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1133), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84597] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1035), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 15, + ACTIONS(1037), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85527,39 +85857,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [84298] = 7, + [84625] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4694), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COLON, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [84334] = 3, + ACTIONS(1717), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2447), 1, + aux_sym__literal_repeat1, + STATE(2781), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4710), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2465), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 9, + ACTIONS(1135), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85569,7 +85905,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1231), 11, + ACTIONS(1137), 11, sym__concat, anon_sym_RBRACE, anon_sym_DQUOTE, @@ -85581,150 +85917,882 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84362] = 13, + [84701] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(1076), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(1078), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1141), 11, + sym__concat, + anon_sym_RBRACE, anon_sym_DQUOTE, - ACTIONS(4579), 1, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, anon_sym_BQUOTE, - STATE(2473), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84757] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1131), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1133), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1143), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1145), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1147), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1149), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84841] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1623), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2475), 1, aux_sym__literal_repeat1, STATE(2768), 1, sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4706), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2478), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84410] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2424), 1, - aux_sym__literal_repeat1, - STATE(2649), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4708), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2433), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84458] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2457), 1, - aux_sym__literal_repeat1, - STATE(2629), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4710), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2451), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84506] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2945), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2501), 1, - aux_sym__literal_repeat1, - STATE(2642), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4712), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2487), 6, + STATE(2482), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84554] = 3, + [84889] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2909), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2512), 1, + aux_sym__literal_repeat1, + STATE(2748), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4714), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2519), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 9, + ACTIONS(1163), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1165), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84965] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2468), 1, + aux_sym__literal_repeat1, + STATE(2693), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4716), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2480), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85013] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1167), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1169), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [85041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1177), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85069] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1226), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1228), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [85097] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2522), 1, + aux_sym__literal_repeat1, + STATE(2783), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4718), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2514), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85145] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1127), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1129), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [85173] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1123), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1125), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [85201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1171), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85229] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2535), 1, + aux_sym__literal_repeat1, + STATE(2733), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4720), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2534), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1123), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1125), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85305] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2925), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2526), 1, + aux_sym__literal_repeat1, + STATE(2743), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4722), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2527), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1226), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1228), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1161), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1159), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85409] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 1, + sym__special_character, + STATE(1814), 1, + aux_sym__literal_repeat1, + ACTIONS(4724), 8, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(4726), 10, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85441] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2538), 1, + aux_sym__literal_repeat1, + STATE(2727), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4730), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2537), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85489] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2509), 1, + aux_sym__literal_repeat1, + STATE(2750), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4732), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2511), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85537] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2967), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2504), 1, + aux_sym__literal_repeat1, + STATE(2709), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4734), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1257), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85613] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2579), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2485), 1, + aux_sym__literal_repeat1, + STATE(2701), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4736), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2493), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85661] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2544), 1, + aux_sym__literal_repeat1, + STATE(2718), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4738), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2545), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85709] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1741), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2525), 1, + aux_sym__literal_repeat1, + STATE(2738), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4740), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2530), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1157), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1155), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85746,52 +86814,305 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84582] = 13, + [85813] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2367), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4587), 1, sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_BQUOTE, - STATE(2505), 1, + STATE(2521), 1, aux_sym__literal_repeat1, - STATE(2726), 1, + STATE(2715), 1, sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4714), 3, + ACTIONS(4742), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2503), 6, + STATE(2524), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84630] = 3, + [85861] = 13, ACTIONS(55), 1, sym_comment, - ACTIONS(1249), 5, + ACTIONS(1667), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2540), 1, + aux_sym__literal_repeat1, + STATE(2723), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4744), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2541), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1193), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1195), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1197), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85965] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3928), 1, + anon_sym_DOLLAR, + ACTIONS(4617), 1, + sym__special_character, + ACTIONS(4619), 1, + anon_sym_DQUOTE, + ACTIONS(4621), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4623), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4625), 1, + anon_sym_BQUOTE, + STATE(1994), 1, + aux_sym__literal_repeat1, + ACTIONS(4627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1372), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4615), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1980), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86011] = 13, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4587), 1, + sym__special_character, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + STATE(2496), 1, + aux_sym__literal_repeat1, + STATE(2708), 1, + sym_concatenation, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4746), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2498), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1244), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1246), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1240), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1242), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1238), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 9, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + sym_word, + ACTIONS(1238), 11, + sym__concat, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86171] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4374), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1247), 15, - sym__concat, + ACTIONS(4556), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -85806,10 +87127,679 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [84658] = 3, + [86198] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1393), 1, + anon_sym_DQUOTE, + ACTIONS(4330), 1, + anon_sym_DOLLAR, + ACTIONS(4332), 1, + sym__special_character, + ACTIONS(4334), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4336), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4338), 1, + anon_sym_BQUOTE, + STATE(1527), 1, + aux_sym__literal_repeat1, + STATE(1545), 1, + sym_concatenation, + ACTIONS(4340), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4748), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1386), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86243] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_RBRACK, + ACTIONS(4756), 1, + anon_sym_QMARK, + ACTIONS(4752), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4758), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4754), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4750), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86278] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4764), 1, + sym__special_character, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + STATE(1338), 1, + aux_sym__literal_repeat1, + STATE(1507), 1, + sym_concatenation, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4760), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86323] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_RPAREN, + ACTIONS(4784), 1, + anon_sym_QMARK, + ACTIONS(4780), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4786), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4782), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4778), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86358] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4288), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4423), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86385] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4788), 1, + anon_sym_COLON, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86420] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4790), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86455] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_DOLLAR, + ACTIONS(4796), 1, + sym__special_character, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + ACTIONS(4800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4804), 1, + anon_sym_BQUOTE, + STATE(2275), 1, + aux_sym__literal_repeat1, + STATE(2350), 1, + sym_concatenation, + ACTIONS(4806), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4792), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2260), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86500] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4810), 1, + anon_sym_DOLLAR, + ACTIONS(4812), 1, + sym__special_character, + ACTIONS(4814), 1, + anon_sym_DQUOTE, + ACTIONS(4816), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4818), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4820), 1, + anon_sym_BQUOTE, + STATE(1490), 1, + aux_sym__literal_repeat1, + STATE(1697), 1, + sym_concatenation, + ACTIONS(4822), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4808), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1498), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86545] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4383), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86572] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4824), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86607] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4826), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86642] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4828), 1, + anon_sym_COLON, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86677] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4288), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4423), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86704] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4832), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4838), 1, + anon_sym_QMARK, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4836), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4830), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86739] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_QMARK, + ACTIONS(4840), 1, + anon_sym_RPAREN, + ACTIONS(4780), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4786), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4782), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4778), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86774] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4383), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86801] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_COLON, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86836] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4383), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86863] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4316), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4569), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86890] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4844), 1, + anon_sym_COLON, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [86925] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_DOLLAR, + ACTIONS(4796), 1, + sym__special_character, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + ACTIONS(4800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4804), 1, + anon_sym_BQUOTE, + STATE(2270), 1, + aux_sym__literal_repeat1, + STATE(2371), 1, + sym_concatenation, + ACTIONS(4806), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4846), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2271), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86970] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4316), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4569), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [86997] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4848), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 9, + ACTIONS(1076), 9, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85819,8 +87809,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_DASH, anon_sym_PERCENT, sym_word, - ACTIONS(1235), 11, - sym__concat, + ACTIONS(1078), 10, anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, @@ -85831,222 +87820,1036 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84686] = 3, + [87059] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4824), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4838), 1, + anon_sym_QMARK, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4836), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4830), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87094] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4810), 1, + anon_sym_DOLLAR, + ACTIONS(4812), 1, + sym__special_character, + ACTIONS(4814), 1, + anon_sym_DQUOTE, + ACTIONS(4816), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4818), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4820), 1, + anon_sym_BQUOTE, + STATE(1520), 1, + aux_sym__literal_repeat1, + STATE(1702), 1, + sym_concatenation, + ACTIONS(4822), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4850), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87139] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(3974), 1, + sym__special_character, + STATE(2384), 1, + aux_sym__literal_repeat1, + STATE(2559), 1, + sym_concatenation, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4852), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2388), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87184] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + ACTIONS(4856), 1, + sym__special_character, + STATE(1338), 1, + aux_sym__literal_repeat1, + STATE(1507), 1, + sym_concatenation, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4854), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1436), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87229] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_RBRACK, + ACTIONS(4752), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4758), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4754), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4750), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87264] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + ACTIONS(4856), 1, + sym__special_character, + STATE(1324), 1, + aux_sym__literal_repeat1, + STATE(1508), 1, + sym_concatenation, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4858), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1453), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87309] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_RPAREN, + ACTIONS(4784), 1, + anon_sym_QMARK, + ACTIONS(4780), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4786), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4782), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4778), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87344] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4810), 1, + anon_sym_DOLLAR, + ACTIONS(4812), 1, + sym__special_character, + ACTIONS(4814), 1, + anon_sym_DQUOTE, + ACTIONS(4816), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4818), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4820), 1, + anon_sym_BQUOTE, + STATE(1446), 1, + aux_sym__literal_repeat1, + STATE(1680), 1, + sym_concatenation, + ACTIONS(4822), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4860), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1450), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87389] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + ACTIONS(4856), 1, + sym__special_character, + STATE(1326), 1, + aux_sym__literal_repeat1, + STATE(1454), 1, + sym_concatenation, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4862), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1459), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87434] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4864), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87469] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_QMARK, + ACTIONS(4866), 1, + anon_sym_RPAREN, + ACTIONS(4780), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4786), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4782), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4778), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87504] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4868), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87539] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4870), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87574] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4872), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87609] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4874), 1, + anon_sym_COLON, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87644] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4838), 1, + anon_sym_QMARK, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4836), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4830), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87679] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4764), 1, + sym__special_character, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + STATE(1324), 1, + aux_sym__literal_repeat1, + STATE(1508), 1, + sym_concatenation, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4876), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1380), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87724] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_QMARK, + ACTIONS(4878), 1, + anon_sym_RPAREN, + ACTIONS(4780), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4786), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4782), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4778), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87759] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(4882), 1, + sym__special_character, + STATE(2390), 1, + aux_sym__literal_repeat1, + STATE(2590), 1, + sym_concatenation, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4880), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2478), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87804] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4764), 1, + sym__special_character, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + STATE(1326), 1, + aux_sym__literal_repeat1, + STATE(1454), 1, + sym_concatenation, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4884), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1398), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87849] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4383), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [87876] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4832), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87911] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4643), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4645), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4641), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87946] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_QMARK, + ACTIONS(4824), 1, + anon_sym_RBRACK, + ACTIONS(4752), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4758), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4754), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4750), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [87981] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(4882), 1, + sym__special_character, + STATE(2392), 1, + aux_sym__literal_repeat1, + STATE(2581), 1, + sym_concatenation, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4888), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2495), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88026] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4374), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4556), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [88053] = 12, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1393), 1, + anon_sym_DQUOTE, + ACTIONS(4330), 1, + anon_sym_DOLLAR, + ACTIONS(4332), 1, + sym__special_character, + ACTIONS(4334), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4336), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4338), 1, + anon_sym_BQUOTE, + STATE(1525), 1, + aux_sym__literal_repeat1, + STATE(1540), 1, + sym_concatenation, + ACTIONS(4340), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4890), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1351), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88098] = 11, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, + anon_sym_BQUOTE, + ACTIONS(4894), 1, + anon_sym_RBRACK, + ACTIONS(4896), 1, + sym__special_character, + ACTIONS(3101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4892), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1836), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88140] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1239), 11, - sym__concat, - anon_sym_RBRACE, + ACTIONS(537), 1, + anon_sym_LF, + ACTIONS(4900), 1, anon_sym_DQUOTE, + ACTIONS(4902), 1, sym_raw_string, - sym_ansii_c_string, + STATE(2292), 1, + sym_string, + ACTIONS(535), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4898), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, + ACTIONS(4904), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [88176] = 11, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1447), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3095), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3097), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3099), 1, anon_sym_BQUOTE, + ACTIONS(4896), 1, + sym__special_character, + ACTIONS(4906), 1, + anon_sym_RBRACK, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84714] = 3, + ACTIONS(4892), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1836), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1243), 11, + ACTIONS(1042), 1, + anon_sym_LF, + ACTIONS(4908), 1, sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [84742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1249), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + STATE(1978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_DOLLAR, sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1247), 11, - sym__concat, - anon_sym_RBRACE, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84770] = 13, + sym_word, + anon_sym_AMP, + [88247] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(1539), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4810), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4814), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4820), 1, anon_sym_BQUOTE, - STATE(2465), 1, - aux_sym__literal_repeat1, - STATE(2757), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4716), 3, + ACTIONS(4910), 4, + sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2467), 6, + STATE(1529), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84818] = 13, + [88284] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(1431), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(1683), 1, + anon_sym_DOLLAR, + ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(1693), 1, anon_sym_BQUOTE, - STATE(2486), 1, - aux_sym__literal_repeat1, - STATE(2702), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4718), 3, + ACTIONS(4912), 4, + sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2483), 6, + STATE(1633), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84866] = 13, + [88321] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4242), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4248), 1, anon_sym_BQUOTE, - STATE(2470), 1, - aux_sym__literal_repeat1, - STATE(2770), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4916), 1, + anon_sym_DOLLAR, + ACTIONS(4250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4720), 3, + ACTIONS(4914), 4, + sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2475), 6, + STATE(288), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84914] = 13, + [88358] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(2833), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4413), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4459), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4461), 1, anon_sym_BQUOTE, - STATE(2411), 1, - aux_sym__literal_repeat1, - STATE(2675), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4920), 1, + anon_sym_DOLLAR, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4722), 3, + ACTIONS(4918), 4, + sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2413), 6, + STATE(2080), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [84962] = 13, + [88395] = 9, ACTIONS(55), 1, sym_comment, ACTIONS(95), 1, @@ -86059,2472 +88862,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(1370), 1, - sym__special_character, - ACTIONS(4726), 1, - sym_regex, - STATE(278), 1, - aux_sym__literal_repeat1, - STATE(490), 1, - sym_concatenation, ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4724), 3, + ACTIONS(4922), 4, + sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(264), 6, + STATE(335), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [85010] = 13, + [88432] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, + ACTIONS(4210), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4214), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4216), 1, anon_sym_BQUOTE, - STATE(2453), 1, - aux_sym__literal_repeat1, - STATE(2712), 1, - sym_concatenation, - ACTIONS(4585), 2, + ACTIONS(4926), 1, + anon_sym_DOLLAR, + ACTIONS(4218), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4728), 3, + ACTIONS(4924), 4, + sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2450), 6, + STATE(553), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [85058] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2445), 1, - aux_sym__literal_repeat1, - STATE(2637), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4730), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2448), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85106] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2420), 1, - aux_sym__literal_repeat1, - STATE(2654), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4732), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2418), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85154] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2003), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2500), 1, - aux_sym__literal_repeat1, - STATE(2797), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4734), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2402), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85202] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2481), 1, - aux_sym__literal_repeat1, - STATE(2774), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4736), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2480), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1229), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1227), 11, - sym__concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [85278] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2463), 1, - aux_sym__literal_repeat1, - STATE(2677), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4738), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2456), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85326] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2408), 1, - aux_sym__literal_repeat1, - STATE(2688), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4740), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2409), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85374] = 13, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1573), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4575), 1, - sym__special_character, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - STATE(2442), 1, - aux_sym__literal_repeat1, - STATE(2744), 1, - sym_concatenation, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4742), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2449), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85422] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(4746), 1, - sym__special_character, - STATE(2388), 1, - aux_sym__literal_repeat1, - STATE(2554), 1, - sym_concatenation, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4744), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2499), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85467] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4373), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4523), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [85494] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1431), 1, - anon_sym_DQUOTE, - ACTIONS(4284), 1, - anon_sym_DOLLAR, - ACTIONS(4286), 1, - sym__special_character, - ACTIONS(4288), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4290), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4292), 1, - anon_sym_BQUOTE, - STATE(1448), 1, - aux_sym__literal_repeat1, - STATE(1590), 1, - sym_concatenation, - ACTIONS(4294), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4748), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1346), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85539] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4754), 1, - sym__special_character, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - STATE(1336), 1, - aux_sym__literal_repeat1, - STATE(1490), 1, - sym_concatenation, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4750), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1401), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85584] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4754), 1, - sym__special_character, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - STATE(1320), 1, - aux_sym__literal_repeat1, - STATE(1501), 1, - sym_concatenation, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4766), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1402), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85629] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4754), 1, - sym__special_character, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - STATE(1324), 1, - aux_sym__literal_repeat1, - STATE(1442), 1, - sym_concatenation, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4768), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1409), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85674] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, - sym__special_character, - ACTIONS(4776), 1, - anon_sym_DQUOTE, - ACTIONS(4778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4780), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4782), 1, - anon_sym_BQUOTE, - STATE(2261), 1, - aux_sym__literal_repeat1, - STATE(2335), 1, - sym_concatenation, - ACTIONS(4784), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4770), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2263), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85719] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4786), 1, - anon_sym_COLON, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [85754] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - ACTIONS(4790), 1, - sym__special_character, - STATE(1320), 1, - aux_sym__literal_repeat1, - STATE(1501), 1, - sym_concatenation, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4788), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1354), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85799] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4792), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [85834] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4796), 1, - anon_sym_RBRACK, - ACTIONS(4802), 1, - anon_sym_QMARK, - ACTIONS(4798), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4804), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4800), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4794), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [85869] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4796), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4812), 1, - anon_sym_QMARK, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4808), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4810), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [85904] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4814), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [85939] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4802), 1, - anon_sym_QMARK, - ACTIONS(4816), 1, - anon_sym_RBRACK, - ACTIONS(4798), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4804), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4800), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4794), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [85974] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4818), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86009] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4820), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86044] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_COLON, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86079] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4341), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4450), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86106] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(4746), 1, - sym__special_character, - STATE(2365), 1, - aux_sym__literal_repeat1, - STATE(2611), 1, - sym_concatenation, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4824), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2426), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86151] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4213), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4533), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86178] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4826), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86213] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4341), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4450), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86240] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4213), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4533), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86267] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4207), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4531), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86294] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4828), 1, - anon_sym_COLON, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86329] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4830), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86364] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4796), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86399] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4834), 1, - anon_sym_DOLLAR, - ACTIONS(4836), 1, - sym__special_character, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(4840), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4844), 1, - anon_sym_BQUOTE, - STATE(1513), 1, - aux_sym__literal_repeat1, - STATE(1648), 1, - sym_concatenation, - ACTIONS(4846), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4832), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1481), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86444] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4812), 1, - anon_sym_QMARK, - ACTIONS(4816), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4808), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4810), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86479] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4848), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86514] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4834), 1, - anon_sym_DOLLAR, - ACTIONS(4836), 1, - sym__special_character, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(4840), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4844), 1, - anon_sym_BQUOTE, - STATE(1510), 1, - aux_sym__literal_repeat1, - STATE(1638), 1, - sym_concatenation, - ACTIONS(4846), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4850), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1509), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86559] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4213), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4533), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86586] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4852), 1, - anon_sym_COLON, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86621] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, - sym__special_character, - ACTIONS(4776), 1, - anon_sym_DQUOTE, - ACTIONS(4778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4780), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4782), 1, - anon_sym_BQUOTE, - STATE(2237), 1, - aux_sym__literal_repeat1, - STATE(2341), 1, - sym_concatenation, - ACTIONS(4784), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4854), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2239), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86666] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4213), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4533), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86693] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4856), 1, - anon_sym_RPAREN, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4860), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4866), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4862), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4858), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86728] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4868), 1, - anon_sym_RPAREN, - ACTIONS(4860), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4866), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4862), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4858), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86763] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4207), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4531), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86790] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4694), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4812), 1, - anon_sym_QMARK, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4808), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4810), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86825] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4870), 1, - anon_sym_RPAREN, - ACTIONS(4860), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4866), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4862), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4858), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86860] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4694), 1, - anon_sym_RPAREN, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4860), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4866), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4862), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4858), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [86895] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - ACTIONS(4790), 1, - sym__special_character, - STATE(1336), 1, - aux_sym__literal_repeat1, - STATE(1490), 1, - sym_concatenation, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4872), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1350), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86940] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4058), 1, - sym__special_character, - STATE(2363), 1, - aux_sym__literal_repeat1, - STATE(2609), 1, - sym_concatenation, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4874), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2361), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86985] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4876), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [87020] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4373), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4523), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [87047] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4878), 1, - anon_sym_RPAREN, - ACTIONS(4860), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4866), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4862), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4858), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [87082] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4694), 1, - anon_sym_RBRACK, - ACTIONS(4802), 1, - anon_sym_QMARK, - ACTIONS(4798), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4804), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4800), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4794), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [87117] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4816), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [87152] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - ACTIONS(4790), 1, - sym__special_character, - STATE(1324), 1, - aux_sym__literal_repeat1, - STATE(1442), 1, - sym_concatenation, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1371), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87197] = 7, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_QMARK, - ACTIONS(4882), 1, - anon_sym_COLON, - ACTIONS(4698), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4704), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4700), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4696), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [87232] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1431), 1, - anon_sym_DQUOTE, - ACTIONS(4284), 1, - anon_sym_DOLLAR, - ACTIONS(4286), 1, - sym__special_character, - ACTIONS(4288), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4290), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4292), 1, - anon_sym_BQUOTE, - STATE(1433), 1, - aux_sym__literal_repeat1, - STATE(1604), 1, - sym_concatenation, - ACTIONS(4294), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4884), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1344), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87277] = 12, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4834), 1, - anon_sym_DOLLAR, - ACTIONS(4836), 1, - sym__special_character, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(4840), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4844), 1, - anon_sym_BQUOTE, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1664), 1, - sym_concatenation, - ACTIONS(4846), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4886), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1470), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1069), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1067), 10, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87349] = 11, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(4890), 1, - anon_sym_RBRACK, - ACTIONS(4892), 1, - sym__special_character, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4888), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1752), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87391] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(537), 1, - anon_sym_LF, - ACTIONS(4896), 1, - anon_sym_DQUOTE, - ACTIONS(4898), 1, - sym_raw_string, - STATE(2316), 1, - sym_string, - ACTIONS(535), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4894), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(4900), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [87427] = 11, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(4892), 1, - sym__special_character, - ACTIONS(4902), 1, - anon_sym_RBRACK, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4888), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1752), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87469] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_DQUOTE, - ACTIONS(2359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, - anon_sym_BQUOTE, - ACTIONS(4906), 1, - anon_sym_DOLLAR, - ACTIONS(2365), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4904), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1413), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87506] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - ACTIONS(4910), 1, - anon_sym_DOLLAR, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4908), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1361), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87543] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(4912), 1, - anon_sym_DOLLAR, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4888), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1752), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87580] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - anon_sym_DOLLAR, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4888), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1752), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87617] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, - anon_sym_BQUOTE, - ACTIONS(4916), 1, - anon_sym_DOLLAR, - ACTIONS(4585), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4914), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2570), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87654] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2985), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2987), 1, - anon_sym_BQUOTE, - ACTIONS(4918), 1, - anon_sym_DOLLAR, - ACTIONS(2989), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4888), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1752), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87691] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4225), 1, - anon_sym_DQUOTE, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, - anon_sym_BQUOTE, - ACTIONS(4922), 1, - anon_sym_DOLLAR, - ACTIONS(4233), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4920), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(393), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87728] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 1, - anon_sym_LF, - ACTIONS(4924), 1, - sym__concat, - STATE(1963), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [87757] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4926), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1767), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87794] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_DQUOTE, - ACTIONS(4409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4411), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4413), 1, - anon_sym_BQUOTE, - ACTIONS(4930), 1, - anon_sym_DOLLAR, - ACTIONS(4415), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4928), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(284), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87831] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4357), 1, - anon_sym_DQUOTE, - ACTIONS(4359), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4361), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4363), 1, - anon_sym_BQUOTE, - ACTIONS(4934), 1, - anon_sym_DOLLAR, - ACTIONS(4365), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4932), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(526), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87868] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - anon_sym_DQUOTE, - ACTIONS(4940), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4944), 1, - anon_sym_BQUOTE, - ACTIONS(4946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4936), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(603), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87905] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(393), 1, - anon_sym_DOLLAR, - ACTIONS(4225), 1, - anon_sym_DQUOTE, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, - anon_sym_BQUOTE, - ACTIONS(4233), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4920), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(393), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87942] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4948), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2014), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87979] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(4758), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, - anon_sym_BQUOTE, - ACTIONS(4950), 1, - anon_sym_DOLLAR, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4908), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1361), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88016] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(1503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1507), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1509), 1, - anon_sym_BQUOTE, - ACTIONS(4952), 1, - anon_sym_DOLLAR, - ACTIONS(1511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4926), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1767), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88053] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4834), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(4840), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4844), 1, - anon_sym_BQUOTE, - ACTIONS(4846), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4954), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1520), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88090] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4956), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1717), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88127] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_DOLLAR, - ACTIONS(215), 1, - anon_sym_DQUOTE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(221), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(223), 1, - anon_sym_BQUOTE, - ACTIONS(225), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4958), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(371), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88164] = 9, + [88469] = 9, ACTIONS(55), 1, sym_comment, ACTIONS(99), 1, @@ -88535,220 +88916,192 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(4962), 1, + ACTIONS(4928), 1, anon_sym_DOLLAR, ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4960), 4, + ACTIONS(4922), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(408), 6, + STATE(335), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88201] = 9, + [88506] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(1411), 1, + ACTIONS(2515), 1, anon_sym_DQUOTE, - ACTIONS(1471), 1, - anon_sym_DOLLAR, - ACTIONS(1477), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, + ACTIONS(2521), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, + ACTIONS(2523), 1, anon_sym_BQUOTE, - ACTIONS(1483), 2, + ACTIONS(4932), 1, + anon_sym_DOLLAR, + ACTIONS(2525), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4964), 4, + ACTIONS(4930), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1588), 6, + STATE(1524), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88238] = 9, + [88543] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_DOLLAR, - ACTIONS(4970), 1, + ACTIONS(1447), 1, anon_sym_DQUOTE, - ACTIONS(4972), 1, + ACTIONS(3089), 1, + anon_sym_DOLLAR, + ACTIONS(3095), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4974), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4976), 1, + ACTIONS(3099), 1, anon_sym_BQUOTE, - ACTIONS(4978), 2, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4966), 4, + ACTIONS(4892), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(614), 6, + STATE(1836), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88275] = 9, + [88580] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(4766), 1, anon_sym_DQUOTE, - ACTIONS(4986), 1, + ACTIONS(4768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4988), 1, + ACTIONS(4770), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4990), 1, + ACTIONS(4772), 1, anon_sym_BQUOTE, - ACTIONS(4992), 2, + ACTIONS(4936), 1, + anon_sym_DOLLAR, + ACTIONS(4774), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4980), 4, + ACTIONS(4934), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(567), 6, + STATE(1352), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88312] = 9, + [88617] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(4994), 1, + ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(1787), 2, + ACTIONS(4242), 1, + anon_sym_DQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4248), 1, + anon_sym_BQUOTE, + ACTIONS(4250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4956), 4, + ACTIONS(4914), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1717), 6, + STATE(288), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88349] = 9, + [88654] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(1459), 1, anon_sym_DQUOTE, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, ACTIONS(4940), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4938), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1664), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88691] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_DOLLAR, ACTIONS(4944), 1, - anon_sym_BQUOTE, - ACTIONS(4996), 1, - anon_sym_DOLLAR, - ACTIONS(4946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4936), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(603), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88386] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4387), 1, anon_sym_DQUOTE, - ACTIONS(4389), 1, + ACTIONS(4946), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4391), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4393), 1, + ACTIONS(4950), 1, anon_sym_BQUOTE, - ACTIONS(5000), 1, - anon_sym_DOLLAR, - ACTIONS(4395), 2, + ACTIONS(4952), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4998), 4, + ACTIONS(4942), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(328), 6, + STATE(589), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88423] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3899), 1, - anon_sym_DOLLAR, - ACTIONS(4651), 1, - anon_sym_DQUOTE, - ACTIONS(4653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4657), 1, - anon_sym_BQUOTE, - ACTIONS(4659), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5002), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1971), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88460] = 9, + [88728] = 9, ACTIONS(39), 1, anon_sym_DOLLAR, ACTIONS(43), 1, @@ -88764,144 +89117,88 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5004), 4, + ACTIONS(4954), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(365), 6, + STATE(442), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88497] = 9, + [88765] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4814), 1, anon_sym_DQUOTE, - ACTIONS(4778), 1, + ACTIONS(4816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4780), 1, + ACTIONS(4818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4782), 1, + ACTIONS(4820), 1, anon_sym_BQUOTE, - ACTIONS(4784), 2, + ACTIONS(4956), 1, + anon_sym_DOLLAR, + ACTIONS(4822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5006), 4, + ACTIONS(4910), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2286), 6, + STATE(1529), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88534] = 9, + [88802] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4268), 1, + ACTIONS(4944), 1, anon_sym_DQUOTE, - ACTIONS(4270), 1, + ACTIONS(4946), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4272), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4274), 1, + ACTIONS(4950), 1, anon_sym_BQUOTE, - ACTIONS(5010), 1, + ACTIONS(4958), 1, anon_sym_DOLLAR, - ACTIONS(4276), 2, + ACTIONS(4952), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5008), 4, + ACTIONS(4942), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(548), 6, + STATE(589), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88571] = 9, + [88839] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4752), 1, - anon_sym_DOLLAR, - ACTIONS(4756), 1, + ACTIONS(1393), 1, anon_sym_DQUOTE, - ACTIONS(4758), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4760), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4762), 1, + ACTIONS(4338), 1, anon_sym_BQUOTE, - ACTIONS(4764), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4908), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1361), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88608] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(854), 1, + ACTIONS(4962), 1, anon_sym_DOLLAR, - ACTIONS(4970), 1, - anon_sym_DQUOTE, - ACTIONS(4972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4976), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4966), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(614), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88645] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(105), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(107), 1, - anon_sym_BQUOTE, - ACTIONS(109), 2, + ACTIONS(4340), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4960), 4, @@ -88909,83 +89206,335 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(408), 6, + STATE(1424), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88682] = 9, + [88876] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(1395), 1, - anon_sym_DOLLAR, - ACTIONS(2355), 1, + ACTIONS(1447), 1, anon_sym_DQUOTE, - ACTIONS(2359), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2361), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2363), 1, + ACTIONS(3099), 1, anon_sym_BQUOTE, - ACTIONS(2365), 2, + ACTIONS(4964), 1, + anon_sym_DOLLAR, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4904), 4, + ACTIONS(4892), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1413), 6, + STATE(1836), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88719] = 9, + [88913] = 9, ACTIONS(55), 1, sym_comment, + ACTIONS(4298), 1, + anon_sym_DOLLAR, + ACTIONS(4302), 1, + anon_sym_DQUOTE, + ACTIONS(4304), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4306), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(4308), 1, - anon_sym_DOLLAR, - ACTIONS(4312), 1, - anon_sym_DQUOTE, - ACTIONS(4314), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4316), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4318), 1, anon_sym_BQUOTE, - ACTIONS(4320), 2, + ACTIONS(4310), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5012), 4, + ACTIONS(4966), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(662), 6, + STATE(562), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88756] = 9, + [88950] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(455), 1, + ACTIONS(4970), 1, anon_sym_DOLLAR, - ACTIONS(4387), 1, + ACTIONS(4972), 1, anon_sym_DQUOTE, - ACTIONS(4389), 1, + ACTIONS(4974), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4391), 1, + ACTIONS(4976), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4393), 1, + ACTIONS(4978), 1, anon_sym_BQUOTE, - ACTIONS(4395), 2, + ACTIONS(4980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4968), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(624), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88987] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DQUOTE, + ACTIONS(4364), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4366), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4368), 1, + anon_sym_BQUOTE, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + ACTIONS(4370), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4982), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89024] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4391), 1, + anon_sym_DOLLAR, + ACTIONS(4395), 1, + anon_sym_DQUOTE, + ACTIONS(4397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, + anon_sym_BQUOTE, + ACTIONS(4403), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4986), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(524), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89061] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(4988), 1, + anon_sym_DOLLAR, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4912), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1633), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89098] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + ACTIONS(4800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4804), 1, + anon_sym_BQUOTE, + ACTIONS(4992), 1, + anon_sym_DOLLAR, + ACTIONS(4806), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4990), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2343), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89135] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(485), 1, + anon_sym_DOLLAR, + ACTIONS(4362), 1, + anon_sym_DQUOTE, + ACTIONS(4364), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4366), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4368), 1, + anon_sym_BQUOTE, + ACTIONS(4370), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4982), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(376), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89172] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_DOLLAR, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + ACTIONS(4800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4804), 1, + anon_sym_BQUOTE, + ACTIONS(4806), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4990), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2343), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89209] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(225), 1, + anon_sym_BQUOTE, + ACTIONS(227), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4994), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(289), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89246] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4585), 1, + anon_sym_DOLLAR, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4996), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2602), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89283] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(1483), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(5000), 1, + anon_sym_DOLLAR, + ACTIONS(1489), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(4998), 4, @@ -88993,42 +89542,42 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(328), 6, + STATE(1820), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88793] = 9, + [89320] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(870), 1, - anon_sym_DOLLAR, - ACTIONS(4984), 1, + ACTIONS(1459), 1, anon_sym_DQUOTE, - ACTIONS(4986), 1, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1505), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4988), 1, + ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4990), 1, + ACTIONS(1509), 1, anon_sym_BQUOTE, - ACTIONS(4992), 2, + ACTIONS(1511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4980), 4, + ACTIONS(4938), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(567), 6, + STATE(1664), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88830] = 9, + [89357] = 9, ACTIONS(43), 1, anon_sym_DQUOTE, ACTIONS(47), 1, @@ -89039,281 +89588,229 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(55), 1, sym_comment, - ACTIONS(5014), 1, + ACTIONS(5002), 1, anon_sym_DOLLAR, ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5004), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(365), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88867] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1477), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1479), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1481), 1, - anon_sym_BQUOTE, - ACTIONS(5016), 1, - anon_sym_DOLLAR, - ACTIONS(1483), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4964), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1588), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88904] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1785), 1, - anon_sym_BQUOTE, - ACTIONS(5018), 1, - anon_sym_DOLLAR, - ACTIONS(1787), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4956), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1717), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88941] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_LF, - ACTIONS(5020), 1, - sym__concat, - STATE(1956), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [88970] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_DQUOTE, - ACTIONS(4778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4780), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4782), 1, - anon_sym_BQUOTE, - ACTIONS(5023), 1, - anon_sym_DOLLAR, - ACTIONS(4784), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5006), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2286), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89007] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4312), 1, - anon_sym_DQUOTE, - ACTIONS(4314), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4316), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4318), 1, - anon_sym_BQUOTE, - ACTIONS(5025), 1, - anon_sym_DOLLAR, - ACTIONS(4320), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5012), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(662), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89044] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_DQUOTE, - ACTIONS(4466), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4468), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4470), 1, - anon_sym_BQUOTE, - ACTIONS(5027), 1, - anon_sym_DOLLAR, - ACTIONS(4472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4948), 4, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2014), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89081] = 9, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(4840), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4844), 1, - anon_sym_BQUOTE, - ACTIONS(5029), 1, - anon_sym_DOLLAR, - ACTIONS(4846), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, ACTIONS(4954), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1520), 6, + STATE(442), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89118] = 9, + [89394] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(4206), 1, anon_sym_DOLLAR, - ACTIONS(4407), 1, + ACTIONS(4210), 1, anon_sym_DQUOTE, - ACTIONS(4409), 1, + ACTIONS(4212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4411), 1, + ACTIONS(4214), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4413), 1, + ACTIONS(4216), 1, anon_sym_BQUOTE, - ACTIONS(4415), 2, + ACTIONS(4218), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4928), 4, + ACTIONS(4924), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(284), 6, + STATE(553), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89155] = 9, + [89431] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(1431), 1, - anon_sym_DQUOTE, - ACTIONS(4284), 1, + ACTIONS(1409), 1, anon_sym_DOLLAR, - ACTIONS(4288), 1, + ACTIONS(2515), 1, + anon_sym_DQUOTE, + ACTIONS(2519), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4290), 1, + ACTIONS(2521), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4292), 1, + ACTIONS(2523), 1, anon_sym_BQUOTE, - ACTIONS(4294), 2, + ACTIONS(2525), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5031), 4, + ACTIONS(4930), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1499), 6, + STATE(1524), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89192] = 5, + [89468] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4589), 1, + anon_sym_DQUOTE, + ACTIONS(4591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4595), 1, + anon_sym_BQUOTE, + ACTIONS(5004), 1, + anon_sym_DOLLAR, + ACTIONS(4597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4996), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2602), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89505] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3928), 1, + anon_sym_DOLLAR, + ACTIONS(4619), 1, + anon_sym_DQUOTE, + ACTIONS(4621), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4623), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4625), 1, + anon_sym_BQUOTE, + ACTIONS(4627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5006), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2000), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89542] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(397), 1, + anon_sym_DOLLAR, + ACTIONS(4272), 1, + anon_sym_DQUOTE, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4278), 1, + anon_sym_BQUOTE, + ACTIONS(4280), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5008), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(464), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89579] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1509), 1, + anon_sym_BQUOTE, + ACTIONS(5010), 1, + anon_sym_DOLLAR, + ACTIONS(1511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4938), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1664), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89616] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(5014), 1, + anon_sym_DOLLAR, + ACTIONS(5016), 1, + anon_sym_DQUOTE, + ACTIONS(5018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5020), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5022), 1, + anon_sym_BQUOTE, + ACTIONS(5024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5012), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(620), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 1, + ACTIONS(1078), 1, anon_sym_LF, - ACTIONS(5033), 1, + ACTIONS(5026), 1, sym__concat, - STATE(1956), 1, + STATE(1936), 1, aux_sym_concatenation_repeat1, - ACTIONS(1055), 14, + ACTIONS(1076), 14, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_DOLLAR, @@ -89328,42 +89825,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [89221] = 9, + [89682] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4353), 1, - anon_sym_DOLLAR, - ACTIONS(4357), 1, + ACTIONS(1447), 1, anon_sym_DQUOTE, - ACTIONS(4359), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4361), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4363), 1, + ACTIONS(3099), 1, anon_sym_BQUOTE, - ACTIONS(4365), 2, + ACTIONS(5028), 1, + anon_sym_DOLLAR, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4932), 4, + ACTIONS(4892), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(526), 6, + STATE(1836), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89258] = 5, + [89719] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(809), 1, + anon_sym_DOLLAR, + ACTIONS(5016), 1, + anon_sym_DQUOTE, + ACTIONS(5018), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5020), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5022), 1, + anon_sym_BQUOTE, + ACTIONS(5024), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5012), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(620), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(1037), 1, + anon_sym_LF, + ACTIONS(5030), 1, + sym__concat, + STATE(1978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [89785] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4619), 1, + anon_sym_DQUOTE, + ACTIONS(4621), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4623), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4625), 1, + anon_sym_BQUOTE, + ACTIONS(5033), 1, + anon_sym_DOLLAR, + ACTIONS(4627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5006), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2000), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, sym__concat, ACTIONS(5037), 1, anon_sym_LF, - STATE(1963), 1, + STATE(1936), 1, aux_sym_concatenation_repeat1, ACTIONS(5035), 14, anon_sym_SEMI, @@ -89380,132 +89957,216 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [89287] = 9, + [89851] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4573), 1, - anon_sym_DOLLAR, - ACTIONS(4577), 1, + ACTIONS(4413), 1, anon_sym_DQUOTE, - ACTIONS(4579), 1, + ACTIONS(4453), 1, + anon_sym_DOLLAR, + ACTIONS(4457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4459), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4583), 1, + ACTIONS(4461), 1, anon_sym_BQUOTE, - ACTIONS(4585), 2, + ACTIONS(4463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4914), 4, + ACTIONS(4918), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2570), 6, + STATE(2080), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89324] = 9, + [89888] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(215), 1, + ACTIONS(1473), 1, + anon_sym_DOLLAR, + ACTIONS(1477), 1, anon_sym_DQUOTE, - ACTIONS(219), 1, + ACTIONS(1483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(221), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(223), 1, + ACTIONS(1487), 1, + anon_sym_BQUOTE, + ACTIONS(1489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4998), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1820), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89925] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, anon_sym_BQUOTE, ACTIONS(5039), 1, anon_sym_DOLLAR, - ACTIONS(225), 2, + ACTIONS(4774), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4958), 4, + ACTIONS(4934), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(371), 6, + STATE(1352), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89361] = 9, + [89962] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(1431), 1, + ACTIONS(4302), 1, anon_sym_DQUOTE, - ACTIONS(4288), 1, + ACTIONS(4304), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4290), 1, + ACTIONS(4306), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4292), 1, + ACTIONS(4308), 1, anon_sym_BQUOTE, ACTIONS(5041), 1, anon_sym_DOLLAR, - ACTIONS(4294), 2, + ACTIONS(4310), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5031), 4, + ACTIONS(4966), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1499), 6, + STATE(562), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89398] = 9, + [89999] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(1393), 1, anon_sym_DQUOTE, - ACTIONS(4653), 1, + ACTIONS(4330), 1, + anon_sym_DOLLAR, + ACTIONS(4334), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4655), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4657), 1, + ACTIONS(4338), 1, + anon_sym_BQUOTE, + ACTIONS(4340), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4960), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1424), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90036] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(4972), 1, + anon_sym_DQUOTE, + ACTIONS(4974), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4976), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4978), 1, + anon_sym_BQUOTE, + ACTIONS(4980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4968), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(624), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90073] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(221), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(225), 1, anon_sym_BQUOTE, ACTIONS(5043), 1, anon_sym_DOLLAR, - ACTIONS(4659), 2, + ACTIONS(227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5002), 4, + ACTIONS(4994), 4, sym__special_character, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1971), 6, + STATE(289), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89435] = 9, + [90110] = 9, ACTIONS(55), 1, sym_comment, - ACTIONS(4264), 1, - anon_sym_DOLLAR, - ACTIONS(4268), 1, - anon_sym_DQUOTE, - ACTIONS(4270), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(4272), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4278), 1, anon_sym_BQUOTE, - ACTIONS(4276), 2, + ACTIONS(5045), 1, + anon_sym_DOLLAR, + ACTIONS(4280), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5008), 4, @@ -89513,128 +90174,142 @@ static uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansii_c_string, sym_word, - STATE(548), 6, + STATE(464), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89472] = 3, - ACTIONS(3), 1, + [90147] = 9, + ACTIONS(55), 1, sym_comment, - ACTIONS(1035), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1033), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4395), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1241), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1237), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89592] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(5047), 1, - anon_sym_LF, - ACTIONS(5049), 1, + anon_sym_DOLLAR, + ACTIONS(4403), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4986), 4, sym__special_character, - STATE(1986), 1, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(524), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90184] = 9, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(4768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4772), 1, + anon_sym_BQUOTE, + ACTIONS(4774), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4934), 4, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1352), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1244), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1131), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1127), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5051), 1, + anon_sym_LF, + ACTIONS(5053), 1, + sym__special_character, + STATE(2002), 1, aux_sym__literal_repeat1, - ACTIONS(5045), 13, + ACTIONS(5049), 13, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_DOLLAR, @@ -89648,10 +90323,453 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [89620] = 3, + [90321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, + ACTIONS(1145), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1167), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1147), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1255), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1163), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1035), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1226), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_LF, + ACTIONS(5055), 1, + sym__special_character, + STATE(2002), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 13, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1123), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1173), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1179), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1240), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1161), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1135), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1151), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1157), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1195), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 2, sym__concat, anon_sym_LF, ACTIONS(1191), 14, @@ -89669,371 +90787,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [89644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1265), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1233), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1164), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1156), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1210), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1168), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1218), 1, - anon_sym_LF, - ACTIONS(5051), 1, - sym__special_character, - STATE(1986), 1, - aux_sym__literal_repeat1, - ACTIONS(1220), 13, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1160), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1152), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1181), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1261), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [89984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1257), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [90008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1177), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [90032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1146), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1144), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [90056] = 3, + [90853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 2, sym__concat, anon_sym_LF, + ACTIONS(1183), 14, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [90877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 2, + sym__concat, + anon_sym_LF, ACTIONS(1187), 14, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -90049,104 +90829,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [90080] = 3, + [90901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1249), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1447), 1, anon_sym_DQUOTE, + ACTIONS(1449), 1, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [90104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1148), 14, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [90128] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_raw_string, - STATE(1762), 1, + STATE(1852), 1, sym_string, ACTIONS(537), 2, sym__concat, anon_sym_RBRACK, - ACTIONS(1461), 2, + ACTIONS(1453), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(1459), 3, + ACTIONS(1451), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(1453), 5, + ACTIONS(1445), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [90161] = 8, + [90934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1445), 1, - sym_raw_string, - STATE(1663), 1, - sym_string, - ACTIONS(537), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(1449), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1447), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(1441), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [90194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 1, + ACTIONS(1078), 1, anon_sym_LF, - ACTIONS(1069), 14, + ACTIONS(1076), 14, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_DOLLAR, @@ -90161,14 +90874,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [90217] = 5, + [90957] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1461), 1, + sym_raw_string, + STATE(1681), 1, + sym_string, + ACTIONS(537), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(1465), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(1463), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(1457), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [90990] = 5, ACTIONS(55), 1, sym_comment, ACTIONS(5035), 1, anon_sym_DOLLAR, - ACTIONS(5054), 1, + ACTIONS(5058), 1, sym__concat, - STATE(2005), 1, + STATE(2023), 1, aux_sym_concatenation_repeat1, ACTIONS(5037), 11, anon_sym_RPAREN, @@ -90182,16 +90920,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90243] = 5, + [91016] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(1033), 1, + ACTIONS(1044), 1, anon_sym_DOLLAR, - ACTIONS(5056), 1, + ACTIONS(5060), 1, sym__concat, - STATE(2002), 1, + STATE(2026), 1, aux_sym_concatenation_repeat1, - ACTIONS(1035), 11, + ACTIONS(1042), 11, anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, @@ -90203,16 +90941,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90269] = 5, + [91042] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(1069), 1, + ACTIONS(1076), 1, anon_sym_DOLLAR, - ACTIONS(5054), 1, + ACTIONS(5058), 1, sym__concat, - STATE(2005), 1, + STATE(2023), 1, aux_sym_concatenation_repeat1, - ACTIONS(1067), 11, + ACTIONS(1078), 11, anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, @@ -90224,40 +90962,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90295] = 8, + [91068] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(537), 1, anon_sym_RBRACE, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(5061), 1, + ACTIONS(5064), 1, sym_raw_string, - STATE(2564), 1, + STATE(2572), 1, sym_string, - ACTIONS(5065), 2, + ACTIONS(5068), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5063), 3, + ACTIONS(5066), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5059), 5, + ACTIONS(5062), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [90327] = 5, + [91100] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(1035), 1, anon_sym_DOLLAR, - ACTIONS(5067), 1, + ACTIONS(5070), 1, sym__concat, - STATE(2002), 1, + STATE(2026), 1, aux_sym_concatenation_repeat1, - ACTIONS(1057), 11, + ACTIONS(1037), 11, anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, @@ -90269,316 +91007,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90353] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90374] = 7, + [91126] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_DQUOTE, - ACTIONS(5071), 1, - sym_raw_string, - STATE(1516), 1, - sym_string, - ACTIONS(5073), 2, + ACTIONS(5073), 1, + anon_sym_RBRACE, + ACTIONS(5083), 1, + sym_variable_name, + STATE(797), 1, + sym_subscript, + ACTIONS(5075), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5081), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(1347), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5069), 5, - anon_sym_BANG, + ACTIONS(5077), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - [90403] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1237), 1, - anon_sym_DOLLAR, - ACTIONS(1235), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90424] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_DQUOTE, - ACTIONS(5077), 1, - sym_raw_string, - STATE(1411), 1, - sym_string, - ACTIONS(5079), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1385), 3, + ACTIONS(5079), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5075), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [90453] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5045), 1, - anon_sym_DOLLAR, - ACTIONS(5081), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(5047), 10, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90478] = 7, + [91157] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, - anon_sym_DQUOTE, ACTIONS(5085), 1, - sym_raw_string, - STATE(332), 1, - sym_string, + anon_sym_RBRACE, + ACTIONS(5095), 1, + sym_variable_name, + STATE(830), 1, + sym_subscript, ACTIONS(5087), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(625), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5083), 5, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, - [90507] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1144), 1, - anon_sym_DOLLAR, - ACTIONS(1146), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90528] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_DQUOTE, - ACTIONS(5091), 1, - sym_raw_string, - STATE(1386), 1, - sym_string, ACTIONS(5093), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(1129), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5089), 5, - anon_sym_BANG, + ACTIONS(5089), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - [90557] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_DOLLAR, - ACTIONS(1035), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90578] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1261), 1, - anon_sym_DOLLAR, - ACTIONS(1259), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90599] = 7, + ACTIONS(5091), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91188] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_DQUOTE, ACTIONS(5097), 1, - sym_raw_string, - STATE(2316), 1, - sym_string, + anon_sym_RBRACE, + ACTIONS(5107), 1, + sym_variable_name, + STATE(755), 1, + sym_subscript, ACTIONS(5099), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(4900), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5095), 5, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, - [90628] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 1, - anon_sym_DQUOTE, - ACTIONS(1413), 1, - sym_raw_string, - STATE(1530), 1, - sym_string, - ACTIONS(1417), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1415), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(1409), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [90657] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1263), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90678] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(5103), 1, - sym_raw_string, - STATE(420), 1, - sym_string, ACTIONS(5105), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(545), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5101), 5, - anon_sym_BANG, + ACTIONS(5101), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - [90707] = 7, + ACTIONS(5103), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91219] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 1, + ACTIONS(4972), 1, anon_sym_DQUOTE, - ACTIONS(5109), 1, + ACTIONS(5111), 1, sym_raw_string, - STATE(655), 1, + STATE(631), 1, sym_string, - ACTIONS(5111), 2, + ACTIONS(5113), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(684), 3, + ACTIONS(770), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5107), 5, + ACTIONS(5109), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [90736] = 3, + [91248] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR, - ACTIONS(1255), 12, + ACTIONS(1133), 12, sym__concat, anon_sym_RPAREN, sym__special_character, @@ -90591,114 +91116,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90757] = 7, + [91269] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(4395), 1, anon_sym_DQUOTE, - ACTIONS(5115), 1, + ACTIONS(5117), 1, sym_raw_string, - STATE(1994), 1, + STATE(511), 1, sym_string, - ACTIONS(5117), 2, + ACTIONS(5119), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(3811), 3, + ACTIONS(637), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5113), 5, + ACTIONS(5115), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [90786] = 7, + [91298] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1137), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91319] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(215), 1, - anon_sym_DQUOTE, ACTIONS(5121), 1, - sym_raw_string, - STATE(369), 1, - sym_string, + anon_sym_RBRACE, + ACTIONS(5131), 1, + sym_variable_name, + STATE(904), 1, + sym_subscript, ACTIONS(5123), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(567), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5119), 5, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, - [90815] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1156), 1, - anon_sym_DOLLAR, - ACTIONS(1158), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90836] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1233), 1, - anon_sym_DOLLAR, - ACTIONS(1231), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90857] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4984), 1, - anon_sym_DQUOTE, - ACTIONS(5127), 1, - sym_raw_string, - STATE(563), 1, - sym_string, ACTIONS(5129), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(933), 3, + ACTIONS(5125), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5127), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5125), 5, + [91350] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5133), 1, + anon_sym_RBRACE, + ACTIONS(5143), 1, + sym_variable_name, + STATE(877), 1, + sym_subscript, + ACTIONS(5135), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5141), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5137), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5139), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91381] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 1, + anon_sym_DQUOTE, + ACTIONS(5147), 1, + sym_raw_string, + STATE(566), 1, + sym_string, + ACTIONS(5149), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(629), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5145), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [90886] = 3, + [91410] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1177), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR, - ACTIONS(1179), 12, + ACTIONS(1141), 12, sym__concat, anon_sym_RPAREN, sym__special_character, @@ -90711,12 +91242,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90907] = 3, + [91431] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1239), 12, + ACTIONS(1145), 12, sym__concat, anon_sym_RPAREN, sym__special_character, @@ -90729,145 +91260,187 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90928] = 3, + [91452] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1147), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91473] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1163), 1, + anon_sym_DOLLAR, + ACTIONS(1165), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91494] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1175), 1, + anon_sym_DOLLAR, + ACTIONS(1177), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91515] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + anon_sym_RBRACE, + ACTIONS(5161), 1, + sym_variable_name, + STATE(820), 1, + sym_subscript, + ACTIONS(5153), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5159), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5155), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5157), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91546] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 1, + anon_sym_RBRACE, + ACTIONS(5173), 1, + sym_variable_name, + STATE(854), 1, + sym_subscript, + ACTIONS(5165), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5171), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5167), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5169), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91577] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym_DQUOTE, + ACTIONS(5177), 1, + sym_raw_string, + STATE(2292), 1, + sym_string, + ACTIONS(5179), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(4904), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5175), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [91606] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1171), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91627] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1161), 1, + anon_sym_DOLLAR, + ACTIONS(1159), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91648] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1157), 1, + anon_sym_DOLLAR, + ACTIONS(1155), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [91669] = 3, ACTIONS(55), 1, sym_comment, ACTIONS(1187), 1, anon_sym_DOLLAR, - ACTIONS(1185), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90949] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_DQUOTE, - ACTIONS(5133), 1, - sym_raw_string, - STATE(282), 1, - sym_string, - ACTIONS(5135), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(696), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5131), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [90978] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1148), 1, - anon_sym_DOLLAR, - ACTIONS(1150), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90999] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_DQUOTE, - ACTIONS(1445), 1, - sym_raw_string, - STATE(1663), 1, - sym_string, - ACTIONS(1449), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1447), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(1441), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91028] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1181), 1, - anon_sym_DOLLAR, - ACTIONS(1183), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91049] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1245), 1, - anon_sym_DOLLAR, - ACTIONS(1243), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91070] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1168), 1, - anon_sym_DOLLAR, - ACTIONS(1170), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91091] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1191), 1, - anon_sym_DOLLAR, ACTIONS(1189), 12, sym__concat, anon_sym_RPAREN, @@ -90881,12 +91454,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91112] = 3, + [91690] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1191), 1, anon_sym_DOLLAR, - ACTIONS(1208), 12, + ACTIONS(1193), 12, sym__concat, anon_sym_RPAREN, sym__special_character, @@ -90899,728 +91472,260 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91133] = 7, + [91711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 1, + ACTIONS(4944), 1, anon_sym_DQUOTE, - ACTIONS(4250), 1, + ACTIONS(5183), 1, sym_raw_string, - STATE(2012), 1, + STATE(586), 1, sym_string, - ACTIONS(5137), 2, + ACTIONS(5185), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(4254), 3, + ACTIONS(927), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(4252), 5, + ACTIONS(5181), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [91162] = 7, + [91740] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_DQUOTE, - ACTIONS(3768), 1, - sym_raw_string, - STATE(1777), 1, - sym_string, - ACTIONS(5139), 2, + ACTIONS(5187), 1, + anon_sym_RBRACE, + ACTIONS(5197), 1, + sym_variable_name, + STATE(809), 1, + sym_subscript, + ACTIONS(5189), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(3772), 3, + ACTIONS(5191), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5193), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(3770), 5, + [91771] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(5209), 1, + sym_variable_name, + STATE(771), 1, + sym_subscript, + ACTIONS(5201), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5207), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5203), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5205), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91802] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5211), 1, + anon_sym_RBRACE, + ACTIONS(5221), 1, + sym_variable_name, + STATE(714), 1, + sym_subscript, + ACTIONS(5213), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5219), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5215), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5217), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91833] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4619), 1, + anon_sym_DQUOTE, + ACTIONS(5225), 1, + sym_raw_string, + STATE(1993), 1, + sym_string, + ACTIONS(5227), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(3828), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5223), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [91191] = 3, - ACTIONS(55), 1, + [91862] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1229), 1, + ACTIONS(5229), 1, + anon_sym_RBRACE, + ACTIONS(5239), 1, + sym_variable_name, + STATE(840), 1, + sym_subscript, + ACTIONS(5231), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5237), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5233), 3, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1227), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91212] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1220), 1, - anon_sym_DOLLAR, - ACTIONS(5141), 1, - sym__special_character, - STATE(2041), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 10, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91237] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1253), 1, - anon_sym_DOLLAR, - ACTIONS(1251), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91258] = 7, + ACTIONS(5235), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [91893] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1431), 1, anon_sym_DQUOTE, ACTIONS(1433), 1, sym_raw_string, - STATE(1505), 1, + STATE(1532), 1, sym_string, - ACTIONS(5144), 2, + ACTIONS(1437), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(1437), 3, + ACTIONS(1435), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(1435), 5, + ACTIONS(1429), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [91287] = 7, + [91922] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(4210), 1, anon_sym_DQUOTE, - ACTIONS(5148), 1, + ACTIONS(5243), 1, sym_raw_string, - STATE(621), 1, + STATE(560), 1, sym_string, - ACTIONS(5150), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(828), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5146), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91316] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 1, - anon_sym_DQUOTE, - ACTIONS(5154), 1, - sym_raw_string, - STATE(613), 1, - sym_string, - ACTIONS(5156), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(898), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5152), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91345] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4225), 1, - anon_sym_DQUOTE, - ACTIONS(5160), 1, - sym_raw_string, - STATE(386), 1, - sym_string, - ACTIONS(5162), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(690), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5158), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91374] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4577), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, - sym_raw_string, - STATE(2564), 1, - sym_string, - ACTIONS(5065), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5063), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5059), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91403] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_DQUOTE, - ACTIONS(5166), 1, - sym_raw_string, - STATE(351), 1, - sym_string, - ACTIONS(5168), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(575), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5164), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91432] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1160), 1, - anon_sym_DOLLAR, - ACTIONS(1162), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91453] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1249), 1, - anon_sym_DOLLAR, - ACTIONS(1247), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91474] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1164), 1, - anon_sym_DOLLAR, - ACTIONS(1166), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91495] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 1, - anon_sym_DOLLAR, - ACTIONS(1200), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91516] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1198), 1, - anon_sym_DOLLAR, - ACTIONS(1200), 12, - sym__concat, - anon_sym_RPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91537] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_DQUOTE, - ACTIONS(1457), 1, - sym_raw_string, - STATE(1762), 1, - sym_string, - ACTIONS(1461), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(1459), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(1453), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - [91566] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4268), 1, - anon_sym_DQUOTE, - ACTIONS(5172), 1, - sym_raw_string, - STATE(554), 1, - sym_string, - ACTIONS(5174), 2, + ACTIONS(5245), 2, anon_sym_STAR, anon_sym_AT, ACTIONS(599), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5170), 5, + ACTIONS(5241), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [91595] = 7, + [91951] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 1, + ACTIONS(1447), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(1449), 1, sym_raw_string, - STATE(537), 1, + STATE(1852), 1, sym_string, - ACTIONS(5180), 2, + ACTIONS(1453), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(762), 3, + ACTIONS(1451), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - ACTIONS(5176), 5, + ACTIONS(1445), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [91624] = 4, - ACTIONS(55), 1, + [91980] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - anon_sym_esac, - ACTIONS(5182), 2, + ACTIONS(5247), 1, + anon_sym_RBRACE, + ACTIONS(5257), 1, + sym_variable_name, + STATE(921), 1, + sym_subscript, + ACTIONS(5249), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5255), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5251), 3, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, - sym_word, - ACTIONS(5186), 9, - sym__special_character, + ACTIONS(5253), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [92011] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, anon_sym_DQUOTE, + ACTIONS(5261), 1, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91646] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 1, - sym_variable_name, - STATE(885), 1, - sym_subscript, - ACTIONS(5188), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5194), 2, + STATE(1486), 1, + sym_string, + ACTIONS(5263), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5190), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5192), 3, + ACTIONS(1389), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [91674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5200), 1, - anon_sym_DQUOTE, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5198), 5, + ACTIONS(5259), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5206), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5208), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91746] = 4, + [92040] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(5212), 1, - anon_sym_esac, - ACTIONS(5210), 2, + ACTIONS(1127), 1, anon_sym_DOLLAR, - sym_word, - ACTIONS(5214), 9, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5216), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91792] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5218), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91816] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_esac, - ACTIONS(5220), 2, - anon_sym_DOLLAR, - sym_word, - ACTIONS(5224), 9, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5226), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91862] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5236), 1, - sym_variable_name, - STATE(713), 1, - sym_subscript, - ACTIONS(5228), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5234), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5230), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5232), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [91890] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5246), 1, - sym_variable_name, - STATE(787), 1, - sym_subscript, - ACTIONS(5238), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5244), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5240), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5242), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [91918] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5248), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5250), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [91966] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5260), 1, - sym_variable_name, - STATE(765), 1, - sym_subscript, - ACTIONS(5252), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5258), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5254), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5256), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [91994] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5262), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92018] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5264), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92042] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 11, + ACTIONS(1129), 12, + sym__concat, anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, @@ -91632,36 +91737,262 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92062] = 7, + [92061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(5265), 1, + anon_sym_RBRACE, + ACTIONS(5275), 1, sym_variable_name, - STATE(744), 1, + STATE(845), 1, sym_subscript, - ACTIONS(5266), 2, + ACTIONS(5267), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5272), 2, + ACTIONS(5273), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5268), 3, + ACTIONS(5269), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5270), 3, + ACTIONS(5271), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [92090] = 4, + [92092] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5277), 1, + anon_sym_RBRACE, + ACTIONS(5287), 1, + sym_variable_name, + STATE(779), 1, + sym_subscript, + ACTIONS(5279), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5285), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5281), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5283), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [92123] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 1, + anon_sym_DQUOTE, + ACTIONS(5291), 1, + sym_raw_string, + STATE(1355), 1, + sym_string, + ACTIONS(5293), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(1205), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5289), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + anon_sym_DQUOTE, + ACTIONS(5297), 1, + sym_raw_string, + STATE(308), 1, + sym_string, + ACTIONS(5299), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(569), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5295), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92181] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5301), 1, + anon_sym_RBRACE, + ACTIONS(5311), 1, + sym_variable_name, + STATE(716), 1, + sym_subscript, + ACTIONS(5303), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5309), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5305), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5307), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [92212] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5313), 1, + anon_sym_RBRACE, + ACTIONS(5323), 1, + sym_variable_name, + STATE(896), 1, + sym_subscript, + ACTIONS(5315), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5321), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5317), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5319), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [92243] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5325), 1, + anon_sym_RBRACE, + ACTIONS(5335), 1, + sym_variable_name, + STATE(912), 1, + sym_subscript, + ACTIONS(5327), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5333), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5329), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5331), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [92274] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(5339), 1, + sym_raw_string, + STATE(361), 1, + sym_string, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(545), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5337), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92303] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(5345), 1, + sym_raw_string, + STATE(468), 1, + sym_string, + ACTIONS(5347), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(561), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5343), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92332] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5349), 1, + anon_sym_RBRACE, + ACTIONS(5359), 1, + sym_variable_name, + STATE(706), 1, + sym_subscript, + ACTIONS(5351), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5357), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5353), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5355), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [92363] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_DQUOTE, + ACTIONS(4415), 1, + sym_raw_string, + STATE(2061), 1, + sym_string, + ACTIONS(5361), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(4419), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(4417), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92392] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(5278), 1, - anon_sym_esac, - ACTIONS(5276), 2, + ACTIONS(1236), 1, anon_sym_DOLLAR, - sym_word, - ACTIONS(5280), 9, + ACTIONS(1238), 12, + sym__concat, + anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -91671,158 +92002,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92112] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5290), 1, - sym_variable_name, - STATE(720), 1, - sym_subscript, - ACTIONS(5282), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5288), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5284), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5286), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92140] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 1, - sym_variable_name, - STATE(773), 1, - sym_subscript, - ACTIONS(5292), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5298), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5294), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5296), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5302), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92192] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5312), 1, - sym_variable_name, - STATE(769), 1, - sym_subscript, - ACTIONS(5304), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5310), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5306), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5308), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92220] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - sym_variable_name, - STATE(836), 1, - sym_subscript, - ACTIONS(5314), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5316), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5318), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92248] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92272] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5334), 1, - sym_variable_name, - STATE(852), 1, - sym_subscript, - ACTIONS(5326), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5332), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5328), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5330), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92300] = 4, + sym_word, + [92413] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(5338), 1, - anon_sym_esac, - ACTIONS(5336), 2, + ACTIONS(1167), 1, anon_sym_DOLLAR, - sym_word, - ACTIONS(5340), 9, + ACTIONS(1169), 12, + sym__concat, + anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -91832,249 +92020,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92322] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5350), 1, - sym_variable_name, - STATE(704), 1, - sym_subscript, - ACTIONS(5342), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5348), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5344), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5346), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5352), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92374] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5354), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92398] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 1, - sym_variable_name, - STATE(903), 1, - sym_subscript, - ACTIONS(5356), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5362), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5358), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5360), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92426] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5374), 1, - sym_variable_name, - STATE(911), 1, - sym_subscript, - ACTIONS(5366), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5372), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5368), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5370), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [92454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5376), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92478] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5380), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5382), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92550] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5384), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92574] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5386), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92598] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5388), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92622] = 4, + sym_word, + [92434] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(5392), 1, - anon_sym_esac, - ACTIONS(5390), 2, + ACTIONS(1236), 1, anon_sym_DOLLAR, - sym_word, - ACTIONS(5394), 9, + ACTIONS(1238), 12, + sym__concat, + anon_sym_RPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -92084,442 +92038,514 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92644] = 5, - ACTIONS(3), 1, + sym_word, + [92455] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5396), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(1240), 1, anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5398), 1, + ACTIONS(1242), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92692] = 5, - ACTIONS(3), 1, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92476] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5400), 1, + ACTIONS(1244), 1, + anon_sym_DOLLAR, + ACTIONS(1246), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92716] = 5, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92497] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5402), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5404), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5406), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92788] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5416), 1, + ACTIONS(5363), 1, + anon_sym_RBRACE, + ACTIONS(5373), 1, sym_variable_name, - STATE(857), 1, + STATE(800), 1, sym_subscript, - ACTIONS(5408), 2, + ACTIONS(5365), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5414), 2, + ACTIONS(5371), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5410), 3, + ACTIONS(5367), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5412), 3, + ACTIONS(5369), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [92816] = 7, + [92528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 1, + ACTIONS(5375), 1, + anon_sym_RBRACE, + ACTIONS(5385), 1, sym_variable_name, - STATE(824), 1, + STATE(888), 1, sym_subscript, - ACTIONS(5418), 2, + ACTIONS(5377), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5424), 2, + ACTIONS(5383), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5420), 3, + ACTIONS(5379), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5422), 3, + ACTIONS(5381), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [92844] = 7, + [92559] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1035), 1, + anon_sym_DOLLAR, + ACTIONS(1037), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92580] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1195), 1, + anon_sym_DOLLAR, + ACTIONS(1197), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92601] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1179), 1, + anon_sym_DOLLAR, + ACTIONS(1181), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92622] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(4272), 1, + anon_sym_DQUOTE, + ACTIONS(5389), 1, + sym_raw_string, + STATE(475), 1, + sym_string, + ACTIONS(5391), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(621), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5387), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92651] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(5049), 1, + anon_sym_DOLLAR, + ACTIONS(5393), 1, + sym__special_character, + STATE(2095), 1, + aux_sym__literal_repeat1, + ACTIONS(5051), 10, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92676] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5395), 1, + anon_sym_RBRACE, + ACTIONS(5405), 1, sym_variable_name, - STATE(772), 1, + STATE(862), 1, sym_subscript, - ACTIONS(5428), 2, + ACTIONS(5397), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5434), 2, + ACTIONS(5403), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5430), 3, + ACTIONS(5399), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5432), 3, + ACTIONS(5401), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [92872] = 5, + [92707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5438), 1, + ACTIONS(1393), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(1395), 1, + sym_raw_string, + STATE(1420), 1, + sym_string, + ACTIONS(5407), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(1399), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(1397), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92896] = 5, - ACTIONS(3), 1, + [92736] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5440), 1, + ACTIONS(1255), 1, + anon_sym_DOLLAR, + ACTIONS(1257), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92920] = 5, - ACTIONS(3), 1, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92757] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5442), 1, + ACTIONS(1151), 1, + anon_sym_DOLLAR, + ACTIONS(1153), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5198), 5, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92778] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + ACTIONS(3772), 1, + sym_raw_string, + STATE(1798), 1, + sym_string, + ACTIONS(5409), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(3776), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(3774), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92944] = 7, + [92807] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5452), 1, + ACTIONS(5016), 1, + anon_sym_DQUOTE, + ACTIONS(5413), 1, + sym_raw_string, + STATE(647), 1, + sym_string, + ACTIONS(5415), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(933), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5411), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92836] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5417), 1, + anon_sym_RBRACE, + ACTIONS(5427), 1, sym_variable_name, - STATE(873), 1, + STATE(759), 1, sym_subscript, - ACTIONS(5444), 2, + ACTIONS(5419), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5450), 2, + ACTIONS(5425), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5446), 3, + ACTIONS(5421), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5448), 3, + ACTIONS(5423), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [92972] = 5, + [92867] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5454), 1, + ACTIONS(4242), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5431), 1, + sym_raw_string, + STATE(278), 1, + sym_string, + ACTIONS(5433), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(647), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5429), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [92996] = 7, + [92896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(4362), 1, + anon_sym_DQUOTE, + ACTIONS(5437), 1, + sym_raw_string, + STATE(359), 1, + sym_string, + ACTIONS(5439), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(731), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5435), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92925] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4814), 1, + anon_sym_DQUOTE, + ACTIONS(5443), 1, + sym_raw_string, + STATE(1610), 1, + sym_string, + ACTIONS(5445), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(1342), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5441), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [92954] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1248), 1, + anon_sym_DOLLAR, + ACTIONS(5447), 1, + sym__special_character, + STATE(2095), 1, + aux_sym__literal_repeat1, + ACTIONS(1250), 10, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92979] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1226), 1, + anon_sym_DOLLAR, + ACTIONS(1228), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [93000] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5450), 1, + anon_sym_RBRACE, + ACTIONS(5460), 1, sym_variable_name, - STATE(858), 1, + STATE(787), 1, sym_subscript, - ACTIONS(5456), 2, + ACTIONS(5452), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5462), 2, + ACTIONS(5458), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5458), 3, + ACTIONS(5454), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5460), 3, + ACTIONS(5456), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [93024] = 5, + [93031] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5466), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93048] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5468), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93072] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5478), 1, + ACTIONS(5462), 1, + anon_sym_RBRACE, + ACTIONS(5472), 1, sym_variable_name, - STATE(819), 1, + STATE(741), 1, sym_subscript, + ACTIONS(5464), 2, + anon_sym_BANG, + anon_sym_POUND, ACTIONS(5470), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5476), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5472), 3, + ACTIONS(5466), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5474), 3, + ACTIONS(5468), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [93100] = 5, + [93062] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5480), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5482), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93148] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, + ACTIONS(5474), 1, + anon_sym_RBRACE, ACTIONS(5484), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, + sym_variable_name, + STATE(886), 1, + sym_subscript, + ACTIONS(5476), 2, anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5482), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5478), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5480), 3, aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, anon_sym_0, anon_sym__, - [93172] = 5, + [93093] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, ACTIONS(5486), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93196] = 7, - ACTIONS(3), 1, - sym_comment, + anon_sym_RBRACE, ACTIONS(5496), 1, sym_variable_name, - STATE(811), 1, + STATE(750), 1, sym_subscript, ACTIONS(5488), 2, anon_sym_BANG, @@ -92535,20 +92561,100 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [93224] = 5, + [93124] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5498), 1, + ACTIONS(4589), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5064), 1, + sym_raw_string, + STATE(2572), 1, + sym_string, + ACTIONS(5068), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5066), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(5062), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + [93153] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_DQUOTE, + ACTIONS(1461), 1, + sym_raw_string, + STATE(1681), 1, + sym_string, + ACTIONS(1465), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(1463), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + ACTIONS(1457), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [93182] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1123), 1, + anon_sym_DOLLAR, + ACTIONS(1125), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [93203] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(1185), 12, + sym__concat, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [93224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5500), 1, + anon_sym_DQUOTE, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, @@ -92557,1058 +92663,1302 @@ static uint16_t ts_small_parse_table[] = { [93248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5500), 1, + ACTIONS(5506), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93272] = 7, + [93272] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5508), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5510), 1, - sym_variable_name, - STATE(695), 1, - sym_subscript, - ACTIONS(5502), 2, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5508), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5504), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5506), 3, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, anon_sym_0, anon_sym__, - [93300] = 5, + [93320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, ACTIONS(5512), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93324] = 7, + [93344] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5514), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93368] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5516), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5518), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5520), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93440] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 1, + anon_sym_DOLLAR, + ACTIONS(1078), 11, + anon_sym_RPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [93460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5522), 1, - sym_variable_name, - STATE(734), 1, - sym_subscript, - ACTIONS(5514), 2, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5520), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5516), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5518), 3, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, anon_sym_0, anon_sym__, - [93352] = 7, - ACTIONS(3), 1, + [93484] = 4, + ACTIONS(55), 1, sym_comment, - ACTIONS(5532), 1, - sym_variable_name, - STATE(888), 1, - sym_subscript, + ACTIONS(5526), 1, + anon_sym_esac, ACTIONS(5524), 2, + anon_sym_DOLLAR, + sym_word, + ACTIONS(5528), 9, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93506] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5530), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5530), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5526), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5528), 3, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, anon_sym_0, anon_sym__, - [93380] = 5, + [93530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5532), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93554] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, sym__string_content, ACTIONS(5534), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93404] = 7, + [93578] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5536), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93602] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5538), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93626] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5540), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93650] = 4, + ACTIONS(55), 1, + sym_comment, ACTIONS(5544), 1, - sym_variable_name, - STATE(800), 1, - sym_subscript, - ACTIONS(5536), 2, - anon_sym_BANG, - anon_sym_POUND, + anon_sym_esac, ACTIONS(5542), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5538), 3, - anon_sym_DASH, - anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5540), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [93432] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5546), 1, + sym_word, + ACTIONS(5546), 9, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93456] = 5, - ACTIONS(3), 1, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93672] = 4, + ACTIONS(55), 1, sym_comment, - ACTIONS(5202), 1, - sym__string_content, - ACTIONS(5548), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5202), 1, - sym__string_content, ACTIONS(5550), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 5, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + anon_sym_esac, + ACTIONS(5548), 2, anon_sym_DOLLAR, - anon_sym_POUND, - ACTIONS(5204), 5, - aux_sym__simple_variable_name_token1, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [93504] = 5, + sym_word, + ACTIONS(5552), 9, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5552), 1, + ACTIONS(5554), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93528] = 7, + [93718] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5556), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5558), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5560), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5562), 1, - sym_variable_name, - STATE(748), 1, - sym_subscript, - ACTIONS(5554), 2, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5560), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5556), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5558), 3, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, anon_sym_0, anon_sym__, - [93556] = 5, + [93814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, ACTIONS(5564), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93580] = 7, + [93838] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5566), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5568), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5570), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93910] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5572), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5574), 1, - sym_variable_name, - STATE(778), 1, - sym_subscript, - ACTIONS(5566), 2, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5572), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5568), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5570), 3, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, anon_sym_0, anon_sym__, - [93608] = 5, + [93958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93632] = 5, + [93982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, ACTIONS(5578), 1, anon_sym_DQUOTE, - ACTIONS(5198), 5, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93656] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5210), 1, - anon_sym_DOLLAR, - ACTIONS(5214), 10, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93675] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5220), 1, - anon_sym_DOLLAR, - ACTIONS(5224), 10, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93694] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5276), 1, - anon_sym_DOLLAR, - ACTIONS(5280), 10, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93713] = 4, + [94006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5198), 5, + ACTIONS(5580), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - ACTIONS(5204), 5, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, anon_sym_STAR, anon_sym_AT, anon_sym_0, anon_sym__, - [93734] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_DOLLAR, - ACTIONS(5340), 10, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93753] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5182), 1, - anon_sym_DOLLAR, - ACTIONS(5186), 10, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93772] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5390), 1, - anon_sym_DOLLAR, - ACTIONS(5394), 10, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93791] = 4, + [94030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5582), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(5580), 5, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5582), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - [93811] = 9, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5440), 1, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5584), 1, anon_sym_DQUOTE, - ACTIONS(5586), 1, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94078] = 4, + ACTIONS(55), 1, + sym_comment, ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, + anon_sym_esac, + ACTIONS(5586), 2, + anon_sym_DOLLAR, + sym_word, + ACTIONS(5590), 9, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, anon_sym_BQUOTE, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [93841] = 9, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5594), 1, - anon_sym_BQUOTE, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5596), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [93871] = 9, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, ACTIONS(5598), 1, - anon_sym_DOLLAR, - ACTIONS(5600), 1, anon_sym_DQUOTE, - STATE(2189), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [93901] = 6, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94196] = 4, ACTIONS(55), 1, sym_comment, + ACTIONS(5602), 1, + anon_sym_esac, + ACTIONS(5600), 2, + anon_sym_DOLLAR, + sym_word, + ACTIONS(5604), 9, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94218] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5606), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94242] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5608), 1, - sym_variable_name, - STATE(864), 1, - sym_subscript, - ACTIONS(5606), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5602), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5604), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [93925] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5550), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5610), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [93955] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5618), 1, - sym_variable_name, - STATE(869), 1, - sym_subscript, - ACTIONS(5616), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5612), 3, + ACTIONS(5498), 5, + anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5614), 3, + anon_sym_POUND, + ACTIONS(5504), 5, aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, anon_sym_0, anon_sym__, - [93979] = 9, + [94266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5620), 1, + ACTIONS(5610), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5612), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5614), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94338] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5616), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5618), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5620), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, ACTIONS(5622), 1, anon_sym_DQUOTE, - STATE(2150), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94009] = 9, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94434] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(5626), 1, + anon_sym_esac, + ACTIONS(5624), 2, + anon_sym_DOLLAR, + sym_word, + ACTIONS(5628), 9, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5502), 1, sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, + ACTIONS(5630), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5632), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5634), 1, + anon_sym_DQUOTE, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94528] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1583), 1, + anon_sym_RBRACE, + ACTIONS(5642), 1, + sym_variable_name, + STATE(717), 1, + sym_subscript, + ACTIONS(5640), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5636), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5638), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94555] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_RBRACE, + ACTIONS(5650), 1, + sym_variable_name, + STATE(733), 1, + sym_subscript, + ACTIONS(5648), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5644), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5646), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94582] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_RBRACE, + ACTIONS(5658), 1, + sym_variable_name, + STATE(734), 1, + sym_subscript, + ACTIONS(5656), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5652), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5654), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94609] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2753), 1, + anon_sym_RBRACE, + ACTIONS(5666), 1, + sym_variable_name, + STATE(873), 1, + sym_subscript, + ACTIONS(5664), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5660), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5662), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94636] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2351), 1, + anon_sym_RBRACE, + ACTIONS(5674), 1, + sym_variable_name, + STATE(822), 1, + sym_subscript, + ACTIONS(5672), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5668), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5670), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94663] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_RBRACE, + ACTIONS(5682), 1, + sym_variable_name, + STATE(801), 1, + sym_subscript, + ACTIONS(5680), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5676), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5678), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym__string_content, + ACTIONS(5498), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + ACTIONS(5504), 5, + aux_sym__simple_variable_name_token1, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [94711] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(5690), 1, + sym_variable_name, + STATE(860), 1, + sym_subscript, + ACTIONS(5688), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5684), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5686), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94738] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2605), 1, + anon_sym_RBRACE, + ACTIONS(5698), 1, + sym_variable_name, + STATE(852), 1, + sym_subscript, + ACTIONS(5696), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5692), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5694), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94765] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2893), 1, + anon_sym_RBRACE, + ACTIONS(5706), 1, + sym_variable_name, + STATE(922), 1, + sym_subscript, + ACTIONS(5704), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5700), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5702), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94792] = 3, + ACTIONS(55), 1, + sym_comment, ACTIONS(5624), 1, anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94039] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5626), 1, - anon_sym_DOLLAR, - ACTIONS(5628), 1, + ACTIONS(5628), 10, + sym__special_character, anon_sym_DQUOTE, - STATE(2153), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94069] = 6, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [94811] = 7, ACTIONS(55), 1, sym_comment, - ACTIONS(5636), 1, - sym_variable_name, - STATE(838), 1, - sym_subscript, - ACTIONS(5634), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5630), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5632), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [94093] = 8, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5638), 1, - anon_sym_DOLLAR, - ACTIONS(5640), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5642), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5644), 1, - anon_sym_BQUOTE, - ACTIONS(5646), 1, - sym__heredoc_body_middle, - ACTIONS(5648), 1, - sym__heredoc_body_end, - STATE(2169), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [94121] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5650), 1, - anon_sym_DOLLAR, - ACTIONS(5652), 1, - anon_sym_DQUOTE, - STATE(2161), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94151] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5438), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5654), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94181] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5400), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5656), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94211] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5664), 1, - sym_variable_name, - STATE(751), 1, - sym_subscript, - ACTIONS(5662), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5658), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5660), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [94235] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5208), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94265] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5226), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5668), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94295] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5670), 1, - anon_sym_DOLLAR, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - STATE(2159), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94325] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5680), 1, - sym_variable_name, - STATE(767), 1, - sym_subscript, - ACTIONS(5678), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5674), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5676), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [94349] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5682), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94379] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5578), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5684), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94409] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5686), 1, - anon_sym_DOLLAR, - ACTIONS(5688), 1, - anon_sym_DQUOTE, - STATE(2166), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94439] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5690), 1, - anon_sym_DOLLAR, - ACTIONS(5692), 1, - anon_sym_DQUOTE, - STATE(2162), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94469] = 8, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5638), 1, - anon_sym_DOLLAR, - ACTIONS(5640), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5642), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5644), 1, - anon_sym_BQUOTE, - ACTIONS(5694), 1, - sym__heredoc_body_middle, - ACTIONS(5696), 1, - sym__heredoc_body_end, - STATE(2219), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [94497] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5704), 1, - sym_variable_name, - STATE(716), 1, - sym_subscript, - ACTIONS(5702), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5698), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5700), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [94521] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5712), 1, - sym_variable_name, - STATE(743), 1, - sym_subscript, - ACTIONS(5710), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5706), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5708), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [94545] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, + ACTIONS(2951), 1, + anon_sym_RBRACE, ACTIONS(5714), 1, - anon_sym_DOLLAR, - ACTIONS(5716), 1, - anon_sym_DQUOTE, - STATE(2173), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94575] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5718), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94605] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5726), 1, sym_variable_name, - STATE(761), 1, + STATE(902), 1, sym_subscript, - ACTIONS(5724), 2, + ACTIONS(5712), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5720), 3, + ACTIONS(5708), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5722), 3, + ACTIONS(5710), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94629] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5728), 1, - anon_sym_DOLLAR, - ACTIONS(5730), 1, - anon_sym_DQUOTE, - STATE(2179), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94659] = 6, + [94838] = 7, ACTIONS(55), 1, sym_comment, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(5722), 1, + sym_variable_name, + STATE(757), 1, + sym_subscript, + ACTIONS(5720), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5716), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5718), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94865] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3073), 1, + anon_sym_RBRACE, + ACTIONS(5730), 1, + sym_variable_name, + STATE(918), 1, + sym_subscript, + ACTIONS(5728), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5724), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5726), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [94892] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2829), 1, + anon_sym_RBRACE, ACTIONS(5738), 1, sym_variable_name, - STATE(697), 1, + STATE(837), 1, sym_subscript, ACTIONS(5736), 2, anon_sym_STAR, @@ -93621,12 +93971,46 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94683] = 6, + [94919] = 3, ACTIONS(55), 1, sym_comment, + ACTIONS(5586), 1, + anon_sym_DOLLAR, + ACTIONS(5590), 10, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [94938] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(5548), 1, + anon_sym_DOLLAR, + ACTIONS(5552), 10, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [94957] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_RBRACE, ACTIONS(5746), 1, sym_variable_name, - STATE(706), 1, + STATE(813), 1, sym_subscript, ACTIONS(5744), 2, anon_sym_STAR, @@ -93639,12 +94023,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94707] = 6, + [94984] = 7, ACTIONS(55), 1, sym_comment, + ACTIONS(2539), 1, + anon_sym_RBRACE, ACTIONS(5754), 1, sym_variable_name, - STATE(724), 1, + STATE(842), 1, sym_subscript, ACTIONS(5752), 2, anon_sym_STAR, @@ -93657,93 +94043,54 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94731] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5248), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5756), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94761] = 6, + [95011] = 7, ACTIONS(55), 1, sym_comment, - ACTIONS(5764), 1, + ACTIONS(2123), 1, + anon_sym_RBRACE, + ACTIONS(5762), 1, sym_variable_name, - STATE(736), 1, + STATE(730), 1, sym_subscript, - ACTIONS(5762), 2, + ACTIONS(5760), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5758), 3, + ACTIONS(5756), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5760), 3, + ACTIONS(5758), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94785] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5552), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5766), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94815] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5768), 1, - anon_sym_DOLLAR, - ACTIONS(5770), 1, - anon_sym_DQUOTE, - STATE(2181), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94845] = 6, + [95038] = 7, ACTIONS(55), 1, sym_comment, + ACTIONS(1525), 1, + anon_sym_RBRACE, + ACTIONS(5770), 1, + sym_variable_name, + STATE(708), 1, + sym_subscript, + ACTIONS(5768), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5764), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5766), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [95065] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1599), 1, + anon_sym_RBRACE, ACTIONS(5778), 1, sym_variable_name, - STATE(771), 1, + STATE(719), 1, sym_subscript, ACTIONS(5776), 2, anon_sym_STAR, @@ -93756,12 +94103,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94869] = 6, + [95092] = 7, ACTIONS(55), 1, sym_comment, + ACTIONS(2813), 1, + anon_sym_RBRACE, ACTIONS(5786), 1, sym_variable_name, - STATE(832), 1, + STATE(884), 1, sym_subscript, ACTIONS(5784), 2, anon_sym_STAR, @@ -93774,12 +94123,14 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94893] = 6, + [95119] = 7, ACTIONS(55), 1, sym_comment, + ACTIONS(2007), 1, + anon_sym_RBRACE, ACTIONS(5794), 1, sym_variable_name, - STATE(780), 1, + STATE(768), 1, sym_subscript, ACTIONS(5792), 2, anon_sym_STAR, @@ -93792,843 +94143,1346 @@ static uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [94917] = 9, - ACTIONS(3), 1, + [95146] = 3, + ACTIONS(55), 1, sym_comment, - ACTIONS(5262), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5796), 1, + ACTIONS(5600), 1, anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94947] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5604), 10, + sym__special_character, anon_sym_DQUOTE, - STATE(2186), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [94977] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [95165] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACE, ACTIONS(5802), 1, - anon_sym_DOLLAR, - ACTIONS(5804), 1, - anon_sym_DQUOTE, - STATE(2199), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95007] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5404), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5806), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95037] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5814), 1, sym_variable_name, - STATE(793), 1, + STATE(756), 1, sym_subscript, - ACTIONS(5812), 2, + ACTIONS(5800), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5808), 3, + ACTIONS(5796), 3, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5810), 3, + ACTIONS(5798), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [95061] = 9, - ACTIONS(3), 1, + [95192] = 7, + ACTIONS(55), 1, sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5816), 1, + ACTIONS(2065), 1, + anon_sym_RBRACE, + ACTIONS(5810), 1, + sym_variable_name, + STATE(781), 1, + sym_subscript, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5804), 3, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, + ACTIONS(5806), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [95219] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3009), 1, + anon_sym_RBRACE, ACTIONS(5818), 1, - anon_sym_DQUOTE, - STATE(2210), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95091] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5820), 1, + sym_variable_name, + STATE(910), 1, + sym_subscript, + ACTIONS(5816), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5812), 3, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5822), 1, - anon_sym_DQUOTE, - STATE(2194), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95121] = 8, + ACTIONS(5814), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [95246] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5542), 1, anon_sym_DOLLAR, - ACTIONS(5640), 1, + ACTIONS(5546), 10, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5642), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5644), 1, anon_sym_BQUOTE, - ACTIONS(5824), 1, - sym__heredoc_body_middle, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [95265] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_RBRACE, ACTIONS(5826), 1, - sym__heredoc_body_end, - STATE(2225), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [95149] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5828), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95179] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5836), 1, sym_variable_name, - STATE(850), 1, + STATE(849), 1, sym_subscript, - ACTIONS(5834), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_AT, + ACTIONS(5820), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(5822), 3, + aux_sym__simple_variable_name_token1, + anon_sym_0, + anon_sym__, + [95292] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2419), 1, + anon_sym_RBRACE, + ACTIONS(5834), 1, + sym_variable_name, + STATE(828), 1, + sym_subscript, + ACTIONS(5832), 2, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(5828), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, ACTIONS(5830), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5832), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [95203] = 6, + [95319] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5524), 1, + anon_sym_DOLLAR, + ACTIONS(5528), 10, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [95338] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2203), 1, + anon_sym_RBRACE, + ACTIONS(5842), 1, sym_variable_name, - STATE(711), 1, + STATE(794), 1, sym_subscript, - ACTIONS(5842), 2, + ACTIONS(5840), 2, anon_sym_STAR, anon_sym_AT, + ACTIONS(5836), 3, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, ACTIONS(5838), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5840), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [95227] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5852), 1, - sym_variable_name, - STATE(692), 1, - sym_subscript, - ACTIONS(5850), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5846), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5848), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [95251] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5854), 1, - anon_sym_DOLLAR, - ACTIONS(5856), 1, - anon_sym_DQUOTE, - STATE(2158), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95281] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5858), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95311] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5860), 1, - anon_sym_DOLLAR, - ACTIONS(5862), 1, - anon_sym_DQUOTE, - STATE(2203), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95341] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5870), 1, - sym_variable_name, - STATE(895), 1, - sym_subscript, - ACTIONS(5868), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5864), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5866), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, [95365] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5872), 1, - anon_sym_DOLLAR, - ACTIONS(5874), 1, + ACTIONS(5578), 1, anon_sym_DQUOTE, - STATE(2165), 1, + ACTIONS(5844), 1, + anon_sym_DOLLAR, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, [95395] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - ACTIONS(5876), 1, + ACTIONS(5854), 1, anon_sym_DOLLAR, - STATE(2213), 1, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, [95425] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5856), 1, + anon_sym_DOLLAR, + ACTIONS(5858), 1, + anon_sym_DQUOTE, + STATE(2228), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95455] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5860), 1, + anon_sym_DOLLAR, + ACTIONS(5862), 1, + anon_sym_DQUOTE, + STATE(2221), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95485] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5864), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95515] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5866), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95545] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5868), 1, + anon_sym_DOLLAR, + ACTIONS(5870), 1, + anon_sym_DQUOTE, + STATE(2219), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95575] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5580), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5872), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95605] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5874), 1, + anon_sym_DOLLAR, + ACTIONS(5876), 1, + anon_sym_DQUOTE, + STATE(2204), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95635] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, anon_sym_BQUOTE, ACTIONS(5878), 1, anon_sym_DOLLAR, ACTIONS(5880), 1, anon_sym_DQUOTE, - STATE(2206), 1, + STATE(2198), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95455] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5888), 1, - sym_variable_name, - STATE(813), 1, - sym_subscript, - ACTIONS(5886), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5882), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5884), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [95479] = 9, + [95665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(5882), 1, anon_sym_DOLLAR, - STATE(2213), 1, + ACTIONS(5884), 1, + anon_sym_DQUOTE, + STATE(2207), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95509] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5898), 1, - sym_variable_name, - STATE(909), 1, - sym_subscript, - ACTIONS(5896), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5892), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5894), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [95533] = 9, + [95695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5576), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - ACTIONS(5900), 1, + ACTIONS(5886), 1, anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95563] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5908), 1, - sym_variable_name, - STATE(877), 1, - sym_subscript, - ACTIONS(5906), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5902), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5904), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [95587] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5910), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95617] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5912), 1, - anon_sym_DOLLAR, - ACTIONS(5914), 1, - anon_sym_DQUOTE, STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95647] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5922), 1, - sym_variable_name, - STATE(825), 1, - sym_subscript, - ACTIONS(5920), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5916), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5918), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - [95671] = 9, + [95725] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5924), 1, - anon_sym_DOLLAR, - ACTIONS(5927), 1, - anon_sym_DQUOTE, - ACTIONS(5929), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5932), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5935), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5938), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - STATE(2213), 1, + ACTIONS(5888), 1, + anon_sym_DOLLAR, + ACTIONS(5890), 1, + anon_sym_DQUOTE, + STATE(2240), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95701] = 9, + [95755] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - ACTIONS(5941), 1, + ACTIONS(5892), 1, anon_sym_DOLLAR, - ACTIONS(5943), 1, + ACTIONS(5894), 1, anon_sym_DQUOTE, - STATE(2217), 1, + STATE(2200), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95731] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5945), 1, - anon_sym_DOLLAR, - ACTIONS(5947), 1, - anon_sym_DQUOTE, - STATE(2147), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [95761] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(5955), 1, - sym_variable_name, - STATE(860), 1, - sym_subscript, - ACTIONS(5953), 2, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(5949), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5951), 3, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, [95785] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5574), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - ACTIONS(5957), 1, + ACTIONS(5896), 1, anon_sym_DOLLAR, - STATE(2213), 1, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, [95815] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5442), 1, + ACTIONS(5898), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5903), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5906), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5909), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5912), 1, + anon_sym_BQUOTE, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95845] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5915), 1, + anon_sym_DOLLAR, + ACTIONS(5917), 1, + anon_sym_DQUOTE, + STATE(2211), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95875] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5510), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5919), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95905] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5921), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95935] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5923), 1, + anon_sym_DOLLAR, + ACTIONS(5925), 1, + anon_sym_DQUOTE, + STATE(2223), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5927), 1, + anon_sym_DOLLAR, + ACTIONS(5929), 1, + anon_sym_DQUOTE, + STATE(2231), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [95995] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5931), 1, + anon_sym_DOLLAR, + ACTIONS(5933), 1, + anon_sym_DQUOTE, + STATE(2193), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96025] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5935), 1, + anon_sym_DOLLAR, + ACTIONS(5937), 1, + anon_sym_DQUOTE, + STATE(2197), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96055] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5939), 1, + anon_sym_DOLLAR, + ACTIONS(5941), 1, + anon_sym_DQUOTE, + STATE(2220), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96085] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5943), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5634), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5945), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96145] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5506), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5947), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96175] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5949), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96205] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5951), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96235] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5953), 1, + anon_sym_DOLLAR, + ACTIONS(5955), 1, + anon_sym_DQUOTE, + STATE(2234), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96265] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5957), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96295] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5620), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, anon_sym_BQUOTE, ACTIONS(5959), 1, anon_sym_DOLLAR, - STATE(2213), 1, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95845] = 8, - ACTIONS(55), 1, + [96325] = 9, + ACTIONS(3), 1, sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, ACTIONS(5961), 1, anon_sym_DOLLAR, - ACTIONS(5964), 1, + ACTIONS(5963), 1, + anon_sym_DQUOTE, + STATE(2236), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96355] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5967), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5970), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, + ACTIONS(5965), 1, + anon_sym_DOLLAR, + ACTIONS(5967), 1, + anon_sym_DQUOTE, + STATE(2210), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96385] = 8, + ACTIONS(55), 1, + sym_comment, + ACTIONS(5969), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5973), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5975), 1, + anon_sym_BQUOTE, + ACTIONS(5977), 1, sym__heredoc_body_middle, - ACTIONS(5976), 1, + ACTIONS(5979), 1, sym__heredoc_body_end, - STATE(2219), 4, + STATE(2232), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [95873] = 6, + [96413] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5981), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96443] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5983), 1, + anon_sym_DOLLAR, + ACTIONS(5985), 1, + anon_sym_DQUOTE, + STATE(2224), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96473] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5987), 1, + anon_sym_DOLLAR, + ACTIONS(5989), 1, + anon_sym_DQUOTE, + STATE(2235), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96503] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5594), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(5991), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96533] = 8, ACTIONS(55), 1, sym_comment, - ACTIONS(5984), 1, - sym_variable_name, - STATE(892), 1, - sym_subscript, - ACTIONS(5982), 2, + ACTIONS(5969), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5973), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5975), 1, + anon_sym_BQUOTE, + ACTIONS(5993), 1, + sym__heredoc_body_middle, + ACTIONS(5995), 1, + sym__heredoc_body_end, + STATE(2244), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [96561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6001), 2, anon_sym_STAR, anon_sym_AT, - ACTIONS(5978), 3, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - ACTIONS(5980), 3, + ACTIONS(5999), 3, aux_sym__simple_variable_name_token1, anon_sym_0, anon_sym__, - [95897] = 9, + ACTIONS(5997), 5, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + [96581] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 1, + ACTIONS(5518), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5846), 1, sym__string_content, - ACTIONS(5590), 1, + ACTIONS(5848), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5852), 1, anon_sym_BQUOTE, - ACTIONS(5986), 1, + ACTIONS(6003), 1, anon_sym_DOLLAR, - STATE(2213), 1, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95927] = 9, + [96611] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5988), 1, - anon_sym_DOLLAR, - ACTIONS(5990), 1, + ACTIONS(5534), 1, anon_sym_DQUOTE, - STATE(2218), 1, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6005), 1, + anon_sym_DOLLAR, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95957] = 9, + [96641] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5992), 1, - anon_sym_DOLLAR, - ACTIONS(5994), 1, + ACTIONS(5536), 1, anon_sym_DQUOTE, - STATE(2221), 1, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + anon_sym_DOLLAR, + STATE(2208), 1, aux_sym_string_repeat1, - STATE(2267), 3, + STATE(2276), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [95987] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - sym__string_content, - ACTIONS(5590), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5594), 1, - anon_sym_BQUOTE, - ACTIONS(5996), 1, - anon_sym_DOLLAR, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - STATE(2146), 1, - aux_sym_string_repeat1, - STATE(2267), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [96017] = 8, + [96671] = 8, ACTIONS(55), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5969), 1, anon_sym_DOLLAR, - ACTIONS(5640), 1, + ACTIONS(5971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5642), 1, + ACTIONS(5973), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5644), 1, + ACTIONS(5975), 1, anon_sym_BQUOTE, - ACTIONS(5694), 1, + ACTIONS(6009), 1, sym__heredoc_body_middle, - ACTIONS(6000), 1, + ACTIONS(6011), 1, sym__heredoc_body_end, - STATE(2219), 4, + STATE(2238), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [96045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 1, - anon_sym_LF, - ACTIONS(6002), 1, - sym__concat, - STATE(2262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1069), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - sym__special_character, - anon_sym_AMP, - [96065] = 7, + [96699] = 8, ACTIONS(55), 1, sym_comment, - ACTIONS(65), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(87), 1, - anon_sym_LBRACK, - ACTIONS(89), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6004), 1, - anon_sym_LPAREN, - STATE(1454), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [96089] = 7, + ACTIONS(5969), 1, + anon_sym_DOLLAR, + ACTIONS(5971), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5973), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5975), 1, + anon_sym_BQUOTE, + ACTIONS(5993), 1, + sym__heredoc_body_middle, + ACTIONS(6013), 1, + sym__heredoc_body_end, + STATE(2244), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [96727] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6015), 1, + anon_sym_DOLLAR, + ACTIONS(6017), 1, + anon_sym_DQUOTE, + STATE(2218), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96757] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6019), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96787] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6021), 1, + anon_sym_DOLLAR, + ACTIONS(6023), 1, + anon_sym_DQUOTE, + STATE(2243), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96817] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6025), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_DQUOTE, + STATE(2217), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96847] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6029), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96877] = 8, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6031), 1, + anon_sym_DOLLAR, + ACTIONS(6034), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6037), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6040), 1, + anon_sym_BQUOTE, + ACTIONS(6043), 1, + sym__heredoc_body_middle, + ACTIONS(6046), 1, + sym__heredoc_body_end, + STATE(2244), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [96905] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_DQUOTE, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6048), 1, + anon_sym_DOLLAR, + STATE(2208), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96935] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6050), 1, + anon_sym_DOLLAR, + ACTIONS(6052), 1, + anon_sym_DQUOTE, + STATE(2194), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 1, + sym__string_content, + ACTIONS(5848), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5852), 1, + anon_sym_BQUOTE, + ACTIONS(6054), 1, + anon_sym_DOLLAR, + ACTIONS(6056), 1, + anon_sym_DQUOTE, + STATE(2245), 1, + aux_sym_string_repeat1, + STATE(2276), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [96995] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6058), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6060), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [97011] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6062), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6064), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [97027] = 7, ACTIONS(11), 1, anon_sym_LPAREN_LPAREN, ACTIONS(21), 1, @@ -94641,54 +95495,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(55), 1, sym_comment, - STATE(1714), 3, + STATE(1684), 3, sym_compound_statement, sym_subshell, sym_test_command, - [96113] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6006), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6008), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [96129] = 7, - ACTIONS(11), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6010), 1, - anon_sym_LPAREN, - STATE(1675), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [96153] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6012), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6014), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [96169] = 7, + [97051] = 7, ACTIONS(55), 1, sym_comment, ACTIONS(65), 1, @@ -94705,20 +95516,7 @@ static uint16_t ts_small_parse_table[] = { sym_compound_statement, sym_subshell, sym_test_command, - [96193] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6016), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6018), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [96209] = 7, + [97075] = 7, ACTIONS(55), 1, sym_comment, ACTIONS(65), 1, @@ -94731,11 +95529,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(89), 1, anon_sym_LBRACK_LBRACK, - STATE(1418), 3, + STATE(1437), 3, sym_compound_statement, sym_subshell, sym_test_command, - [96233] = 7, + [97099] = 7, ACTIONS(11), 1, anon_sym_LPAREN_LPAREN, ACTIONS(21), 1, @@ -94748,189 +95546,395 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(55), 1, sym_comment, - STATE(1645), 3, + STATE(1701), 3, sym_compound_statement, sym_subshell, sym_test_command, - [96257] = 3, + [97123] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(6020), 3, + ACTIONS(6066), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(6022), 5, + ACTIONS(6068), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [96273] = 6, + [97139] = 7, + ACTIONS(11), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6070), 1, + anon_sym_LPAREN, + STATE(1717), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [97163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(1078), 1, anon_sym_LF, - ACTIONS(6026), 1, - anon_sym_in, - ACTIONS(6030), 1, - sym__special_character, - STATE(2264), 1, - aux_sym__literal_repeat1, - ACTIONS(6028), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 1, + ACTIONS(6072), 1, sym__concat, - ACTIONS(1198), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96309] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6002), 1, - sym__concat, - ACTIONS(6032), 1, - anon_sym_LF, - ACTIONS(6034), 1, - anon_sym_in, - STATE(2262), 1, + STATE(2261), 1, aux_sym_concatenation_repeat1, - ACTIONS(6036), 3, + ACTIONS(1076), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + sym__special_character, + anon_sym_AMP, + [97183] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6074), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6076), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [97199] = 7, + ACTIONS(55), 1, + sym_comment, + ACTIONS(65), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(89), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6078), 1, + anon_sym_LPAREN, + STATE(1472), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [97223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 1, + sym__concat, + ACTIONS(1240), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6072), 1, + sym__concat, + ACTIONS(6080), 1, + anon_sym_LF, + ACTIONS(6082), 1, + anon_sym_in, + STATE(2261), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6084), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96330] = 3, + [97259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 1, - sym__concat, - ACTIONS(1257), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - sym__concat, - ACTIONS(1265), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 1, - sym__concat, - ACTIONS(1177), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6038), 1, + ACTIONS(1042), 1, anon_sym_LF, - ACTIONS(6040), 6, + ACTIONS(6086), 1, + sym__concat, + STATE(2273), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1044), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6088), 1, + anon_sym_LF, + ACTIONS(6090), 6, anon_sym_SEMI, anon_sym_esac, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_BQUOTE, anon_sym_AMP, - [96390] = 3, + [97293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 1, + ACTIONS(1165), 1, sym__concat, - ACTIONS(1187), 6, + ACTIONS(1163), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96405] = 3, + [97308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 1, + ACTIONS(1145), 1, sym__concat, - ACTIONS(1253), 6, + ACTIONS(1143), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96420] = 3, + [97323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 1, + ACTIONS(6092), 1, + anon_sym_LF, + ACTIONS(6094), 6, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_BQUOTE, + anon_sym_AMP, + [97338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, sym__concat, - ACTIONS(1249), 6, + ACTIONS(1139), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96435] = 3, + [97353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 1, + ACTIONS(1155), 1, sym__concat, - ACTIONS(1245), 6, + ACTIONS(1157), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96450] = 3, + [97368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1137), 1, sym__concat, - ACTIONS(1241), 6, + ACTIONS(1135), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96465] = 3, + [97383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1133), 1, sym__concat, - ACTIONS(1237), 6, + ACTIONS(1131), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96480] = 3, + [97398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 1, + ACTIONS(6096), 1, + anon_sym_LF, + ACTIONS(6098), 1, + anon_sym_in, + ACTIONS(6102), 1, + sym__special_character, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(6100), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97419] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6072), 1, + sym__concat, + ACTIONS(6104), 1, + anon_sym_LF, + ACTIONS(6106), 1, + anon_sym_in, + STATE(2261), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6108), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1246), 1, + sym__concat, + ACTIONS(1244), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 1, + anon_sym_LF, + ACTIONS(6110), 1, + sym__concat, + STATE(2273), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1035), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + sym__concat, + ACTIONS(1236), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6102), 1, + sym__special_character, + ACTIONS(6113), 1, + anon_sym_LF, + ACTIONS(6115), 1, + anon_sym_in, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(6117), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6121), 1, + sym__concat, + ACTIONS(6119), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 1, + sym__concat, + ACTIONS(1147), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6123), 1, + anon_sym_LF, + ACTIONS(6125), 6, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_BQUOTE, + anon_sym_AMP, + [97555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 1, + sym__concat, + ACTIONS(1236), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 1, + sym__concat, + ACTIONS(1255), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_LF, + ACTIONS(6127), 1, + sym__special_character, + STATE(2281), 1, + aux_sym__literal_repeat1, + ACTIONS(1248), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym__concat, + ACTIONS(1195), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 1, sym__concat, ACTIONS(1191), 6, anon_sym_DOLLAR, @@ -94939,306 +95943,163 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96495] = 3, + [97634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(1189), 1, sym__concat, - ACTIONS(1233), 6, + ACTIONS(1187), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96510] = 3, + [97649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 1, + ACTIONS(1159), 1, sym__concat, - ACTIONS(1229), 6, + ACTIONS(1161), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96525] = 3, + [97664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6042), 1, - anon_sym_LF, - ACTIONS(6044), 6, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, - anon_sym_AMP, - [96540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 1, - anon_sym_LF, - ACTIONS(6048), 6, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, - anon_sym_AMP, - [96555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 1, + ACTIONS(1171), 1, sym__concat, - ACTIONS(1181), 6, + ACTIONS(1173), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96570] = 3, + [97679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 1, + ACTIONS(1177), 1, sym__concat, - ACTIONS(1168), 6, + ACTIONS(1175), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96585] = 3, + [97694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 1, + ACTIONS(1228), 1, sym__concat, - ACTIONS(1164), 6, + ACTIONS(1226), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96600] = 3, + [97709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6050), 1, + ACTIONS(1125), 1, sym__concat, - ACTIONS(5927), 6, + ACTIONS(1123), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96615] = 3, + [97724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 1, + ACTIONS(6130), 1, sym__concat, - ACTIONS(1210), 6, + ACTIONS(5901), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [96630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 1, - sym__concat, - ACTIONS(1198), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96645] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6030), 1, - sym__special_character, - ACTIONS(6052), 1, - anon_sym_LF, - ACTIONS(6054), 1, - anon_sym_in, - STATE(2264), 1, - aux_sym__literal_repeat1, - ACTIONS(6056), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96666] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 1, - anon_sym_LF, - ACTIONS(6058), 1, - sym__concat, - STATE(2265), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1055), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96685] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6002), 1, - sym__concat, - ACTIONS(6060), 1, - anon_sym_LF, - ACTIONS(6062), 1, - anon_sym_in, - STATE(2262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6064), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96706] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1218), 1, - anon_sym_LF, - ACTIONS(6066), 1, - sym__special_character, - STATE(2264), 1, - aux_sym__literal_repeat1, - ACTIONS(1220), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_LF, - ACTIONS(6069), 1, - sym__concat, - STATE(2265), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1033), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - sym__concat, - ACTIONS(1261), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6074), 1, - sym__concat, - ACTIONS(6072), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1229), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96788] = 6, + [97739] = 6, ACTIONS(55), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6132), 1, anon_sym_fi, - ACTIONS(6078), 1, + ACTIONS(6134), 1, anon_sym_elif, - ACTIONS(6080), 1, + ACTIONS(6136), 1, anon_sym_else, - STATE(2708), 1, + STATE(2659), 1, sym_else_clause, - STATE(2337), 2, + STATE(2353), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [96808] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1257), 1, - anon_sym_DOLLAR, - ACTIONS(1255), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96822] = 3, + [97759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 2, + ACTIONS(1129), 2, sym__concat, anon_sym_LF, - ACTIONS(1156), 4, + ACTIONS(1127), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1198), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [96850] = 3, + [97773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 2, sym__concat, anon_sym_LF, - ACTIONS(1187), 4, + ACTIONS(1183), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96864] = 3, + [97787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 2, + ACTIONS(1228), 2, sym__concat, anon_sym_LF, - ACTIONS(1198), 4, + ACTIONS(1226), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96878] = 3, + [97801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, + ACTIONS(1197), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1195), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1240), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 2, sym__concat, anon_sym_LF, ACTIONS(1191), 4, @@ -95246,178 +96107,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96892] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1245), 1, - anon_sym_DOLLAR, - ACTIONS(1243), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96906] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1249), 1, - anon_sym_DOLLAR, - ACTIONS(1247), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96920] = 3, + [97843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 2, + ACTIONS(1189), 2, sym__concat, anon_sym_LF, - ACTIONS(1210), 4, + ACTIONS(1187), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96934] = 3, + [97857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 2, + ACTIONS(5901), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 2, sym__concat, anon_sym_LF, - ACTIONS(1181), 4, + ACTIONS(1167), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96948] = 3, + [97883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 2, + ACTIONS(1137), 2, sym__concat, anon_sym_LF, - ACTIONS(1177), 4, + ACTIONS(1135), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [96962] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1253), 1, - anon_sym_DOLLAR, - ACTIONS(1251), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96976] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1229), 1, - anon_sym_DOLLAR, - ACTIONS(1227), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [96990] = 3, + [97897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 2, + ACTIONS(1153), 2, sym__concat, anon_sym_LF, - ACTIONS(1152), 4, + ACTIONS(1151), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1245), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97018] = 3, + [97911] = 6, ACTIONS(55), 1, sym_comment, - ACTIONS(1164), 1, - anon_sym_DOLLAR, - ACTIONS(1166), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [97032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1033), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97046] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1168), 1, - anon_sym_DOLLAR, - ACTIONS(1170), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [97060] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1210), 1, - anon_sym_DOLLAR, - ACTIONS(1208), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [97074] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1237), 1, - anon_sym_DOLLAR, - ACTIONS(1235), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [97088] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6078), 1, + ACTIONS(6134), 1, anon_sym_elif, - ACTIONS(6080), 1, + ACTIONS(6136), 1, anon_sym_else, - ACTIONS(6082), 1, + ACTIONS(6138), 1, anon_sym_fi, - STATE(2775), 1, + STATE(2712), 1, sym_else_clause, - STATE(2337), 2, + STATE(2353), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [97108] = 3, + [97931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97943] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1187), 1, anon_sym_DOLLAR, ACTIONS(1189), 5, sym__heredoc_body_middle, @@ -95425,3798 +96196,3927 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97122] = 6, + [97957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1236), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [97985] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(6078), 1, + ACTIONS(1255), 1, + anon_sym_DOLLAR, + ACTIONS(1257), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [97999] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98013] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1157), 1, + anon_sym_DOLLAR, + ACTIONS(1155), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1123), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98041] = 6, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6134), 1, anon_sym_elif, - ACTIONS(6080), 1, + ACTIONS(6136), 1, anon_sym_else, - ACTIONS(6084), 1, + ACTIONS(6142), 1, anon_sym_fi, - STATE(2666), 1, + STATE(2823), 1, sym_else_clause, - STATE(2337), 2, + STATE(2353), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [97142] = 3, + [98061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 2, + ACTIONS(1181), 2, sym__concat, anon_sym_LF, - ACTIONS(1160), 4, + ACTIONS(1179), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97156] = 3, + [98075] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1240), 1, + anon_sym_DOLLAR, + ACTIONS(1242), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 2, - sym__concat, + ACTIONS(1078), 1, anon_sym_LF, - ACTIONS(1257), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 1, - anon_sym_LF, - ACTIONS(1069), 5, + ACTIONS(1076), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, sym__special_character, anon_sym_AMP, - [97184] = 3, + [98103] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1187), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR, - ACTIONS(1185), 5, + ACTIONS(1141), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97198] = 3, + [98117] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1244), 1, + anon_sym_DOLLAR, + ACTIONS(1246), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 2, + ACTIONS(1149), 2, sym__concat, anon_sym_LF, - ACTIONS(1233), 4, + ACTIONS(1147), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97212] = 3, + [98145] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1233), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR, - ACTIONS(1231), 5, + ACTIONS(1145), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97226] = 3, + [98159] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1177), 1, + ACTIONS(1147), 1, anon_sym_DOLLAR, - ACTIONS(1179), 5, + ACTIONS(1149), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97240] = 3, + [98173] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1226), 1, + anon_sym_DOLLAR, + ACTIONS(1228), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 2, + ACTIONS(1257), 2, sym__concat, anon_sym_LF, - ACTIONS(1237), 4, + ACTIONS(1255), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97254] = 3, + [98201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, + ACTIONS(1165), 2, sym__concat, anon_sym_LF, - ACTIONS(1241), 4, + ACTIONS(1163), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5927), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [97280] = 3, + [98215] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(1161), 1, anon_sym_DOLLAR, - ACTIONS(1183), 5, + ACTIONS(1159), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97294] = 3, + [98229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 2, + ACTIONS(1246), 2, sym__concat, anon_sym_LF, - ACTIONS(1148), 4, + ACTIONS(1244), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97308] = 3, + [98243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1131), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1139), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1157), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98285] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1198), 1, + ACTIONS(1236), 1, anon_sym_DOLLAR, - ACTIONS(1200), 5, + ACTIONS(1238), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97322] = 3, + [98299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1143), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1175), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1161), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98341] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR, - ACTIONS(1239), 5, + ACTIONS(1177), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1265), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97350] = 6, + [98355] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(6078), 1, + ACTIONS(1195), 1, + anon_sym_DOLLAR, + ACTIONS(1197), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98369] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1137), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98383] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1123), 1, + anon_sym_DOLLAR, + ACTIONS(1125), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98397] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1236), 1, + anon_sym_DOLLAR, + ACTIONS(1238), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [98411] = 6, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6134), 1, anon_sym_elif, - ACTIONS(6080), 1, + ACTIONS(6136), 1, anon_sym_else, - ACTIONS(6086), 1, + ACTIONS(6144), 1, anon_sym_fi, - STATE(2643), 1, + STATE(2681), 1, sym_else_clause, - STATE(2337), 2, + STATE(2353), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [97370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1261), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97384] = 3, + [98431] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1198), 1, + ACTIONS(1163), 1, anon_sym_DOLLAR, - ACTIONS(1200), 5, + ACTIONS(1165), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97398] = 3, + [98445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 2, + ACTIONS(1171), 2, sym__concat, anon_sym_LF, - ACTIONS(1168), 4, + ACTIONS(1173), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6088), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [97424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1251), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1253), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97438] = 3, + [98459] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1265), 1, + ACTIONS(1191), 1, anon_sym_DOLLAR, - ACTIONS(1263), 5, + ACTIONS(1193), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97452] = 3, + [98473] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(1261), 1, + ACTIONS(1173), 1, anon_sym_DOLLAR, - ACTIONS(1259), 5, + ACTIONS(1171), 5, sym__heredoc_body_middle, sym__heredoc_body_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [97466] = 3, + [98487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 2, + ACTIONS(1037), 2, sym__concat, anon_sym_LF, - ACTIONS(1144), 4, + ACTIONS(1035), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97480] = 3, + [98501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 2, - sym__concat, + ACTIONS(573), 1, + anon_sym_BQUOTE, + ACTIONS(6146), 1, anon_sym_LF, - ACTIONS(1249), 4, - anon_sym_in, + ACTIONS(6148), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97494] = 3, + [98516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 2, - sym__concat, + ACTIONS(945), 1, + anon_sym_RPAREN, + ACTIONS(6150), 1, anon_sym_LF, - ACTIONS(1164), 4, - anon_sym_in, + ACTIONS(6152), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97508] = 5, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6090), 1, - anon_sym_SEMI, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1641), 2, - sym_do_group, - sym_compound_statement, - [97525] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4211), 1, - sym__concat, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6096), 1, - anon_sym_RPAREN, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - STATE(2520), 1, - aux_sym_case_item_repeat1, - [97544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(6098), 1, - anon_sym_LF, - ACTIONS(6100), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97559] = 5, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - ACTIONS(6102), 1, - anon_sym_SEMI, - STATE(1690), 2, - sym_do_group, - sym_compound_statement, - [97576] = 5, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - ACTIONS(6104), 1, - anon_sym_SEMI, - STATE(1684), 2, - sym_do_group, - sym_compound_statement, - [97593] = 5, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - ACTIONS(6106), 1, - anon_sym_SEMI, - STATE(1681), 2, - sym_do_group, - sym_compound_statement, - [97610] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4436), 1, - sym__special_character, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6108), 1, - anon_sym_RPAREN, - STATE(1535), 1, - aux_sym__literal_repeat1, - STATE(2464), 1, - aux_sym_case_item_repeat1, - [97629] = 5, + [98531] = 5, ACTIONS(55), 1, sym_comment, ACTIONS(83), 1, anon_sym_LBRACE, - ACTIONS(6110), 1, + ACTIONS(6154), 1, anon_sym_SEMI, - ACTIONS(6112), 1, + ACTIONS(6156), 1, anon_sym_do, - STATE(1398), 2, - sym_do_group, - sym_compound_statement, - [97646] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - ACTIONS(6114), 1, - anon_sym_SEMI, - STATE(1474), 2, - sym_do_group, - sym_compound_statement, - [97663] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - ACTIONS(6116), 1, - anon_sym_SEMI, STATE(1407), 2, sym_do_group, sym_compound_statement, - [97680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_BQUOTE, - ACTIONS(6118), 1, - anon_sym_LF, - ACTIONS(6120), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6122), 1, - anon_sym_LF, - ACTIONS(551), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(6124), 2, - anon_sym_SEMI, - anon_sym_AMP, - [97710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_RPAREN, - ACTIONS(6126), 1, - anon_sym_LF, - ACTIONS(6128), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6130), 1, - anon_sym_LF, - ACTIONS(6132), 1, - anon_sym_in, - ACTIONS(6134), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6042), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6044), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97753] = 5, + [98548] = 5, ACTIONS(55), 1, sym_comment, ACTIONS(83), 1, anon_sym_LBRACE, - ACTIONS(6112), 1, + ACTIONS(6156), 1, anon_sym_do, - ACTIONS(6136), 1, - anon_sym_SEMI, - STATE(1396), 2, - sym_do_group, - sym_compound_statement, - [97770] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6060), 1, - anon_sym_LF, - ACTIONS(6062), 1, - anon_sym_in, - ACTIONS(6064), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - ts_builtin_sym_end, - ACTIONS(6138), 1, - anon_sym_LF, - ACTIONS(6140), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97800] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6144), 1, - anon_sym_elif, - ACTIONS(6142), 2, - anon_sym_fi, - anon_sym_else, - STATE(2337), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [97815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - anon_sym_BQUOTE, - ACTIONS(6147), 1, - anon_sym_LF, - ACTIONS(6149), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97830] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - ACTIONS(6151), 1, + ACTIONS(6158), 1, anon_sym_SEMI, STATE(1406), 2, sym_do_group, sym_compound_statement, - [97847] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - ACTIONS(6153), 1, - anon_sym_SEMI, - STATE(1408), 2, - sym_do_group, - sym_compound_statement, - [97864] = 4, + [98565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6032), 1, - anon_sym_LF, - ACTIONS(6034), 1, - anon_sym_in, - ACTIONS(6036), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97879] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - ACTIONS(6155), 1, - anon_sym_SEMI, - STATE(1395), 2, - sym_do_group, - sym_compound_statement, - [97896] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4436), 1, - sym__special_character, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6157), 1, - anon_sym_RPAREN, - STATE(1535), 1, - aux_sym__literal_repeat1, - STATE(2521), 1, - aux_sym_case_item_repeat1, - [97915] = 6, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4211), 1, - sym__concat, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6159), 1, - anon_sym_RPAREN, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - STATE(2459), 1, - aux_sym_case_item_repeat1, - [97934] = 5, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - ACTIONS(6161), 1, - anon_sym_SEMI, - STATE(1708), 2, - sym_do_group, - sym_compound_statement, - [97951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6163), 1, - anon_sym_LF, - ACTIONS(6165), 1, - anon_sym_in, - ACTIONS(6167), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [97966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 2, + ACTIONS(6123), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6048), 3, + ACTIONS(6125), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [97979] = 5, + [98578] = 5, ACTIONS(55), 1, sym_comment, ACTIONS(83), 1, anon_sym_LBRACE, - ACTIONS(6112), 1, + ACTIONS(6156), 1, + anon_sym_do, + ACTIONS(6160), 1, + anon_sym_SEMI, + STATE(1404), 2, + sym_do_group, + sym_compound_statement, + [98595] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6080), 1, + anon_sym_LF, + ACTIONS(6082), 1, + anon_sym_in, + ACTIONS(6084), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98610] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4234), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [98625] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + ACTIONS(6162), 1, + anon_sym_SEMI, + STATE(1489), 2, + sym_do_group, + sym_compound_statement, + [98642] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6166), 1, + anon_sym_elif, + ACTIONS(6164), 2, + anon_sym_fi, + anon_sym_else, + STATE(2353), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [98657] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, anon_sym_do, ACTIONS(6169), 1, anon_sym_SEMI, - STATE(1419), 2, + STATE(1514), 2, sym_do_group, sym_compound_statement, - [97996] = 4, - ACTIONS(3), 1, + [98674] = 5, + ACTIONS(55), 1, sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, ACTIONS(6171), 1, - anon_sym_LF, - ACTIONS(949), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(6173), 2, anon_sym_SEMI, - anon_sym_AMP, - [98011] = 5, + STATE(1518), 2, + sym_do_group, + sym_compound_statement, + [98691] = 5, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(55), 1, sym_comment, - ACTIONS(6092), 1, - anon_sym_do, + ACTIONS(6173), 1, + anon_sym_SEMI, ACTIONS(6175), 1, - anon_sym_SEMI, - STATE(1740), 2, - sym_do_group, - sym_compound_statement, - [98028] = 5, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, anon_sym_do, - ACTIONS(6177), 1, - anon_sym_SEMI, - STATE(1730), 2, + STATE(1686), 2, sym_do_group, sym_compound_statement, - [98045] = 3, + [98708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6038), 2, + ACTIONS(6177), 1, + anon_sym_LF, + ACTIONS(6179), 1, + anon_sym_in, + ACTIONS(6181), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_LF, + ACTIONS(6185), 1, + anon_sym_in, + ACTIONS(6187), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6088), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6040), 3, + ACTIONS(6090), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [98058] = 5, + [98751] = 5, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(55), 1, sym_comment, - ACTIONS(6092), 1, + ACTIONS(6175), 1, anon_sym_do, - ACTIONS(6179), 1, + ACTIONS(6189), 1, anon_sym_SEMI, - STATE(1739), 2, + STATE(1696), 2, sym_do_group, sym_compound_statement, - [98075] = 4, + [98768] = 6, ACTIONS(55), 1, sym_comment, - ACTIONS(4211), 1, - sym__concat, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1067), 3, - anon_sym_PIPE, - anon_sym_RPAREN, + ACTIONS(4489), 1, sym__special_character, - [98090] = 4, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6193), 1, + anon_sym_RPAREN, + STATE(1554), 1, + aux_sym__literal_repeat1, + STATE(2418), 1, + aux_sym_case_item_repeat1, + [98787] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + ACTIONS(6195), 1, + anon_sym_SEMI, + STATE(1516), 2, + sym_do_group, + sym_compound_statement, + [98804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6197), 1, + anon_sym_LF, + ACTIONS(945), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(6199), 2, + anon_sym_SEMI, + anon_sym_AMP, + [98819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(943), 1, + ts_builtin_sym_end, + ACTIONS(6201), 1, + anon_sym_LF, + ACTIONS(6203), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98834] = 5, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + ACTIONS(6205), 1, + anon_sym_SEMI, + STATE(1665), 2, + sym_do_group, + sym_compound_statement, + [98851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6092), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6094), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98864] = 5, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + ACTIONS(6207), 1, + anon_sym_SEMI, + STATE(1743), 2, + sym_do_group, + sym_compound_statement, + [98881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 1, + ts_builtin_sym_end, + ACTIONS(6209), 1, + anon_sym_LF, + ACTIONS(6211), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98896] = 5, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + ACTIONS(6213), 1, + anon_sym_SEMI, + STATE(1709), 2, + sym_do_group, + sym_compound_statement, + [98913] = 5, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + ACTIONS(6215), 1, + anon_sym_SEMI, + STATE(1670), 2, + sym_do_group, + sym_compound_statement, + [98930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6104), 1, + anon_sym_LF, + ACTIONS(6106), 1, + anon_sym_in, + ACTIONS(6108), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98945] = 6, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4489), 1, + sym__special_character, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6217), 1, + anon_sym_RPAREN, + STATE(1554), 1, + aux_sym__literal_repeat1, + STATE(2533), 1, + aux_sym_case_item_repeat1, + [98964] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(945), 1, - ts_builtin_sym_end, - ACTIONS(6181), 1, + anon_sym_BQUOTE, + ACTIONS(6219), 1, anon_sym_LF, - ACTIONS(6183), 3, + ACTIONS(6221), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [98105] = 4, - ACTIONS(55), 1, + [98979] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, - sym__concat, - STATE(1589), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1057), 2, - anon_sym_PIPE, + ACTIONS(573), 1, anon_sym_RPAREN, - [98119] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1067), 1, - anon_sym_RBRACE, - ACTIONS(1069), 1, - sym__special_character, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98135] = 4, + ACTIONS(6223), 1, + anon_sym_LF, + ACTIONS(6225), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [98994] = 5, ACTIONS(23), 1, anon_sym_LBRACE, ACTIONS(55), 1, sym_comment, - ACTIONS(6092), 1, + ACTIONS(6175), 1, anon_sym_do, - STATE(1741), 2, + ACTIONS(6227), 1, + anon_sym_SEMI, + STATE(1750), 2, sym_do_group, sym_compound_statement, - [98149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6189), 1, - anon_sym_LF, - ACTIONS(6191), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6193), 1, - anon_sym_LF, - ACTIONS(6195), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98173] = 4, + [99011] = 6, ACTIONS(55), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4234), 1, sym__concat, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6197), 2, + ACTIONS(6191), 1, anon_sym_PIPE, + ACTIONS(6229), 1, anon_sym_RPAREN, - [98187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6199), 1, - anon_sym_LF, - ACTIONS(6201), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98199] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4436), 1, - sym__special_character, - STATE(1535), 1, - aux_sym__literal_repeat1, - ACTIONS(6203), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [98213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6205), 1, - anon_sym_LF, - ACTIONS(6207), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98225] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6209), 1, - anon_sym_RBRACK, - ACTIONS(6211), 1, - sym__special_character, - ACTIONS(6213), 1, - sym__concat, - STATE(2369), 1, - aux_sym__literal_repeat1, - [98241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - anon_sym_SEMI_SEMI, - ACTIONS(6098), 1, - anon_sym_LF, - ACTIONS(6100), 2, - anon_sym_SEMI, - anon_sym_AMP, - [98255] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1735), 2, - sym_do_group, - sym_compound_statement, - [98269] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1677), 2, - sym_do_group, - sym_compound_statement, - [98283] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6215), 1, - sym__special_character, - STATE(2369), 1, - aux_sym__literal_repeat1, - ACTIONS(1218), 2, - sym__concat, - anon_sym_RBRACK, - [98297] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1410), 2, - sym_do_group, - sym_compound_statement, - [98311] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1678), 2, - sym_do_group, - sym_compound_statement, - [98325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 1, - anon_sym_LF, - ACTIONS(6220), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6222), 1, - anon_sym_LF, - ACTIONS(6224), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_SEMI_SEMI, - ACTIONS(6126), 1, - anon_sym_LF, - ACTIONS(6128), 2, - anon_sym_SEMI, - anon_sym_AMP, - [98363] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1685), 2, - sym_do_group, - sym_compound_statement, - [98377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 1, - anon_sym_LF, - ACTIONS(6228), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98389] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1400), 2, - sym_do_group, - sym_compound_statement, - [98403] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1642), 2, - sym_do_group, - sym_compound_statement, - [98417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6230), 1, - anon_sym_LF, - ACTIONS(6232), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6234), 1, - anon_sym_LF, - ACTIONS(6236), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98441] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 1, - sym__special_character, - STATE(2462), 1, + STATE(2401), 1, aux_sym_concatenation_repeat1, - ACTIONS(1067), 2, - sym__concat, - anon_sym_RBRACK, - [98455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6238), 1, - anon_sym_LF, - ACTIONS(6240), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98467] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1512), 2, - sym_do_group, - sym_compound_statement, - [98481] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1397), 2, - sym_do_group, - sym_compound_statement, - [98495] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1674), 2, - sym_do_group, - sym_compound_statement, - [98509] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1449), 2, - sym_do_group, - sym_compound_statement, - [98523] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1391), 2, - sym_do_group, - sym_compound_statement, - [98537] = 5, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6211), 1, - sym__special_character, - ACTIONS(6242), 1, - anon_sym_RBRACK, - ACTIONS(6244), 1, - sym__concat, - STATE(2369), 1, - aux_sym__literal_repeat1, - [98553] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1399), 2, - sym_do_group, - sym_compound_statement, - [98567] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_LBRACE, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1392), 2, - sym_do_group, - sym_compound_statement, - [98581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6246), 1, - anon_sym_LF, - ACTIONS(6248), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [98593] = 4, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1667), 2, - sym_do_group, - sym_compound_statement, - [98607] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6159), 1, - anon_sym_RPAREN, - STATE(2459), 1, + STATE(2420), 1, aux_sym_case_item_repeat1, - [98620] = 4, + [99030] = 5, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(55), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6175), 1, + anon_sym_do, + ACTIONS(6231), 1, + anon_sym_SEMI, + STATE(1751), 2, + sym_do_group, + sym_compound_statement, + [99047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 1, + anon_sym_LF, + ACTIONS(573), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(6235), 2, + anon_sym_SEMI, + anon_sym_AMP, + [99062] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + ACTIONS(6237), 1, + anon_sym_SEMI, + STATE(1418), 2, + sym_do_group, + sym_compound_statement, + [99079] = 6, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4234), 1, sym__concat, - STATE(2439), 1, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6239), 1, + anon_sym_RPAREN, + STATE(2401), 1, aux_sym_concatenation_repeat1, - [98633] = 4, + STATE(2440), 1, + aux_sym_case_item_repeat1, + [99098] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6250), 1, - anon_sym_RBRACE, - ACTIONS(6252), 1, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1517), 2, + sym_do_group, + sym_compound_statement, + [99112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6241), 1, + anon_sym_LF, + ACTIONS(6243), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6245), 1, + anon_sym_LF, + ACTIONS(6247), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99136] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4489), 1, sym__special_character, - STATE(2472), 1, + STATE(1554), 1, aux_sym__literal_repeat1, - [98646] = 4, + ACTIONS(6249), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [99150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(573), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6223), 1, + anon_sym_LF, + ACTIONS(6225), 2, + anon_sym_SEMI, + anon_sym_AMP, + [99164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6251), 1, + anon_sym_LF, + ACTIONS(6253), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99176] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1700), 2, + sym_do_group, + sym_compound_statement, + [99190] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4234), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6255), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [99204] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6257), 1, sym__special_character, - ACTIONS(6254), 1, - anon_sym_RBRACE, - STATE(2472), 1, + STATE(2389), 1, aux_sym__literal_repeat1, - [98659] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3634), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(1250), 2, sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98672] = 4, + anon_sym_RBRACK, + [99218] = 5, ACTIONS(55), 1, sym_comment, - ACTIONS(2675), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98685] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6256), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98698] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6258), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98711] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98724] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1959), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98737] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3411), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98750] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, ACTIONS(6260), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98763] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1793), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98776] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_RBRACE, - ACTIONS(6262), 1, - sym__concat, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - [98789] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6265), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98802] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6267), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98815] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98828] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3237), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98841] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6269), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98854] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6271), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98867] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98880] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6096), 1, - anon_sym_RPAREN, - STATE(2520), 1, - aux_sym_case_item_repeat1, - [98893] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2413), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98906] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6273), 1, - sym__concat, - ACTIONS(4476), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [98917] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3501), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98930] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98943] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6275), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98956] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6277), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98969] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6279), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [98982] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1671), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [98995] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6281), 1, - anon_sym_PIPE, - ACTIONS(6284), 1, - anon_sym_RPAREN, - STATE(2423), 1, - aux_sym_case_item_repeat1, - [99008] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6286), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99021] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99034] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6288), 1, anon_sym_RBRACK, - ACTIONS(6290), 1, - sym__concat, - STATE(2462), 1, - aux_sym_concatenation_repeat1, - [99047] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6294), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99058] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, + ACTIONS(6262), 1, sym__special_character, - ACTIONS(6296), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99071] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3377), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6264), 1, sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99084] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6298), 1, - sym__concat, - ACTIONS(4440), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99095] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6300), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99108] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6302), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99121] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99134] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3732), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99147] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99160] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6304), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99171] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3361), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99184] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6306), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99195] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(6308), 1, - sym__concat, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - [99208] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6310), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99221] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6312), 1, - anon_sym_RBRACE, - STATE(2472), 1, + STATE(2389), 1, aux_sym__literal_repeat1, [99234] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1662), 2, + sym_do_group, + sym_compound_statement, + [99248] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6262), 1, sym__special_character, - ACTIONS(6314), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99247] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99260] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6316), 1, - sym__concat, - ACTIONS(4482), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99271] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6318), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99284] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6320), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99297] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6322), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99308] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99321] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99334] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99347] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99360] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6324), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99371] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6326), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99384] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6328), 1, - sym__concat, - ACTIONS(4446), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [99395] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99408] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99421] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6330), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99434] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99447] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6094), 1, - anon_sym_PIPE, - ACTIONS(6332), 1, - anon_sym_RPAREN, - STATE(2423), 1, - aux_sym_case_item_repeat1, - [99460] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6334), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99473] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6336), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99486] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1057), 1, + ACTIONS(6266), 1, anon_sym_RBRACK, - ACTIONS(6338), 1, + ACTIONS(6268), 1, + sym__concat, + STATE(2389), 1, + aux_sym__literal_repeat1, + [99264] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1719), 2, + sym_do_group, + sym_compound_statement, + [99278] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1475), 2, + sym_do_group, + sym_compound_statement, + [99292] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1483), 2, + sym_do_group, + sym_compound_statement, + [99306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 1, + anon_sym_LF, + ACTIONS(6272), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(945), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6150), 1, + anon_sym_LF, + ACTIONS(6152), 2, + anon_sym_SEMI, + anon_sym_AMP, + [99332] = 5, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 1, + sym__special_character, + ACTIONS(1078), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99348] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 1, + sym__special_character, + STATE(2419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1078), 2, + sym__concat, + anon_sym_RBRACK, + [99362] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1720), 2, + sym_do_group, + sym_compound_statement, + [99376] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6276), 1, sym__concat, STATE(1632), 1, aux_sym_concatenation_repeat1, - [99499] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6340), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99512] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6094), 1, + ACTIONS(1042), 2, anon_sym_PIPE, - ACTIONS(6342), 1, anon_sym_RPAREN, - STATE(2423), 1, + [99390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6278), 1, + anon_sym_LF, + ACTIONS(6280), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6282), 1, + anon_sym_LF, + ACTIONS(6284), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99414] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1511), 2, + sym_do_group, + sym_compound_statement, + [99428] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1726), 2, + sym_do_group, + sym_compound_statement, + [99442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6286), 1, + anon_sym_LF, + ACTIONS(6288), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99454] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1452), 2, + sym_do_group, + sym_compound_statement, + [99468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6290), 1, + anon_sym_LF, + ACTIONS(6292), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6294), 1, + anon_sym_LF, + ACTIONS(6296), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99492] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1711), 2, + sym_do_group, + sym_compound_statement, + [99506] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1519), 2, + sym_do_group, + sym_compound_statement, + [99520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_LF, + ACTIONS(6300), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99532] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1515), 2, + sym_do_group, + sym_compound_statement, + [99546] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1706), 2, + sym_do_group, + sym_compound_statement, + [99560] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_LBRACE, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1408), 2, + sym_do_group, + sym_compound_statement, + [99574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6302), 1, + anon_sym_LF, + ACTIONS(6304), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [99586] = 4, + ACTIONS(23), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1721), 2, + sym_do_group, + sym_compound_statement, + [99600] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_RPAREN, + STATE(2508), 1, aux_sym_case_item_repeat1, - [99525] = 4, + [99613] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6344), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99538] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6346), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99551] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1573), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99564] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99577] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3335), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99590] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6348), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99603] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6350), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99616] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1218), 1, - anon_sym_RBRACE, - ACTIONS(6352), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99629] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6355), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99642] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6357), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99655] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99668] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99681] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99694] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99707] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6359), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99720] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3533), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99733] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6361), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99746] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6363), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99759] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99772] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99785] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6365), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99798] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6367), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99811] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3021), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99824] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6369), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99837] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99850] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99863] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [99876] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1069), 1, - sym__special_character, - ACTIONS(1067), 2, - sym__concat, + ACTIONS(1042), 1, anon_sym_RBRACK, - [99887] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6371), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99900] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6373), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99913] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6308), 1, sym__concat, - STATE(2439), 1, + STATE(1687), 1, aux_sym_concatenation_repeat1, - [99926] = 4, + [99626] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6375), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99939] = 4, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6310), 1, + anon_sym_RPAREN, + STATE(2508), 1, + aux_sym_case_item_repeat1, + [99639] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6377), 1, + ACTIONS(1949), 1, anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99952] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3125), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6274), 1, sym__concat, - STATE(2439), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - [99965] = 4, + [99652] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6379), 1, - anon_sym_RBRACK, - ACTIONS(6381), 1, + ACTIONS(3746), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, sym__concat, - STATE(2462), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - [99978] = 4, + [99665] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6383), 1, + ACTIONS(2107), 1, anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [99991] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6385), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100004] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6274), 1, sym__concat, - STATE(2439), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - [100017] = 4, + [99678] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(6312), 1, anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6314), 1, + sym__special_character, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99691] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6316), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99704] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2771), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, sym__concat, - STATE(2439), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - [100030] = 4, + [99717] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6387), 1, + ACTIONS(3596), 1, anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100043] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6389), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100056] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6391), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100067] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6393), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100080] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6395), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100093] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6397), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100106] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6274), 1, sym__concat, - STATE(2439), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - [100119] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3708), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [100132] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6292), 1, - anon_sym_LBRACK, - ACTIONS(6399), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100143] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6401), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100156] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [100169] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6403), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100182] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6252), 1, - sym__special_character, - ACTIONS(6405), 1, - anon_sym_RBRACE, - STATE(2472), 1, - aux_sym__literal_repeat1, - [100195] = 4, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [100208] = 4, + [99730] = 4, ACTIONS(55), 1, sym_comment, ACTIONS(3269), 1, anon_sym_RBRACE, - ACTIONS(6187), 1, + ACTIONS(6274), 1, sym__concat, - STATE(2439), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - [100221] = 4, + [99743] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(3652), 1, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6318), 1, anon_sym_RBRACE, - ACTIONS(6187), 1, - sym__concat, - STATE(2439), 1, - aux_sym_concatenation_repeat1, - [100234] = 4, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99756] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6094), 1, + ACTIONS(3686), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99769] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6320), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99782] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99795] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6322), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99808] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6324), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99821] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6326), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99834] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2679), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99847] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3502), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99860] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6328), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99873] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99886] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6191), 1, anon_sym_PIPE, + ACTIONS(6330), 1, + anon_sym_RPAREN, + STATE(2508), 1, + aux_sym_case_item_repeat1, + [99899] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6332), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99912] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2443), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99925] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99938] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6336), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [99949] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6338), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99962] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3131), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [99975] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6340), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [99988] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6342), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100001] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6344), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100014] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6346), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100025] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100038] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6348), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100051] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6350), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100062] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6352), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100075] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6354), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100088] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3143), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100101] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3736), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100114] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100127] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6229), 1, + anon_sym_RPAREN, + STATE(2420), 1, + aux_sym_case_item_repeat1, + [100140] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6356), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100153] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6358), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100166] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100179] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6360), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100192] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3025), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100205] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3323), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100218] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6362), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100231] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6364), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100242] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6366), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100255] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6368), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100268] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6370), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100281] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1037), 1, + anon_sym_RBRACE, + ACTIONS(6372), 1, + sym__concat, + STATE(2471), 1, + aux_sym_concatenation_repeat1, + [100294] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6375), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100305] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100318] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2845), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100331] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6377), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100344] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3436), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100357] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6379), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100370] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6381), 1, + anon_sym_RBRACK, + ACTIONS(6383), 1, + sym__concat, + STATE(2419), 1, + aux_sym_concatenation_repeat1, + [100383] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6385), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100394] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100407] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6387), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100420] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100433] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6389), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100446] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2967), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100459] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6391), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100472] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6393), 1, + sym__concat, + ACTIONS(4493), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100483] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 1, + sym__special_character, + ACTIONS(1078), 2, + sym__concat, + anon_sym_RBRACK, + [100494] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100507] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6395), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100520] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6397), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100533] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6399), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100546] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6401), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100559] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2555), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100572] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6334), 1, + anon_sym_LBRACK, + ACTIONS(6403), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100583] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6405), 1, + anon_sym_RBRACK, ACTIONS(6407), 1, - anon_sym_RPAREN, - STATE(2423), 1, - aux_sym_case_item_repeat1, - [100247] = 4, + sym__concat, + STATE(2419), 1, + aux_sym_concatenation_repeat1, + [100596] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_PIPE, + ACTIONS(6314), 1, + sym__special_character, ACTIONS(6409), 1, - anon_sym_RPAREN, - STATE(2423), 1, - aux_sym_case_item_repeat1, - [100260] = 2, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100609] = 4, ACTIONS(55), 1, sym_comment, - ACTIONS(1189), 2, + ACTIONS(3568), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100622] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3167), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100635] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100648] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100661] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6411), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100674] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6413), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100687] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3293), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100700] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6415), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100713] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_RBRACE, + ACTIONS(6417), 1, + sym__special_character, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100726] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6239), 1, + anon_sym_RPAREN, + STATE(2440), 1, + aux_sym_case_item_repeat1, + [100739] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1042), 1, + anon_sym_RBRACE, + ACTIONS(6420), 1, + sym__concat, + STATE(2471), 1, + aux_sym_concatenation_repeat1, + [100752] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6422), 1, + anon_sym_PIPE, + ACTIONS(6425), 1, + anon_sym_RPAREN, + STATE(2508), 1, + aux_sym_case_item_repeat1, + [100765] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6427), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100778] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6429), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100791] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3388), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100804] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6431), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100817] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100830] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100843] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3490), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100856] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6433), 1, + sym__concat, + ACTIONS(4485), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100867] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3544), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100880] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6435), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100893] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3710), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100906] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100919] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6437), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100932] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6439), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100945] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6441), 1, + sym__concat, + ACTIONS(4528), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [100956] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [100969] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6443), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100982] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6445), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [100995] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2909), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101008] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101021] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6447), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101034] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101047] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6449), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101060] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6451), 1, + sym__concat, + ACTIONS(4473), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101071] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6191), 1, + anon_sym_PIPE, + ACTIONS(6453), 1, + anon_sym_RPAREN, + STATE(2508), 1, + aux_sym_case_item_repeat1, + [101084] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3195), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101097] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6455), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101110] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6457), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101123] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3656), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101136] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6459), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101149] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6461), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101162] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6463), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101175] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3412), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101188] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101201] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101214] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6314), 1, + sym__special_character, + ACTIONS(6465), 1, + anon_sym_RBRACE, + STATE(2505), 1, + aux_sym__literal_repeat1, + [101227] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101240] = 4, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__concat, + STATE(2507), 1, + aux_sym_concatenation_repeat1, + [101253] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1171), 2, sym__concat, anon_sym_RBRACE, - [100268] = 2, + [101261] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6469), 1, + anon_sym_EQ, + [101271] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6471), 1, + anon_sym_EQ, + [101281] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4473), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101289] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6473), 1, + anon_sym_EQ, + [101299] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6475), 1, + anon_sym_EQ, + [101309] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6477), 1, + anon_sym_EQ, + [101319] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6479), 1, + anon_sym_EQ, + [101329] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6481), 1, + anon_sym_EQ, + [101339] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1760), 1, + sym_do_group, + [101349] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6483), 1, + anon_sym_EQ, + [101359] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1238), 2, + sym__concat, + anon_sym_RBRACE, + [101367] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6255), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [101375] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_EQ, + [101385] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym_EQ, + [101395] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6489), 1, + anon_sym_EQ, + [101405] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_EQ, + [101415] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4528), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101423] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6493), 1, + anon_sym_EQ, + [101433] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6495), 1, + anon_sym_EQ, + [101443] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(239), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6497), 1, + anon_sym_esac, + [101453] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1246), 2, + sym__concat, + anon_sym_RBRACE, + [101461] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6499), 1, + anon_sym_EQ, + [101471] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_EQ, + [101481] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_EQ, + [101491] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1129), 2, + sym__concat, + anon_sym_RBRACE, + [101499] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1447), 1, + sym_do_group, + [101509] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6505), 1, + anon_sym_EQ, + [101519] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1076), 1, + sym__special_character, + ACTIONS(1078), 1, + anon_sym_RBRACE, + [101529] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6507), 1, + anon_sym_EQ, + [101539] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6509), 1, + anon_sym_EQ, + [101549] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6511), 1, + anon_sym_EQ, + [101559] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6403), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101567] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6513), 1, + anon_sym_EQ, + [101577] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6405), 1, + anon_sym_RBRACK, + ACTIONS(6515), 1, + sym__concat, + [101587] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6517), 1, + anon_sym_EQ, + [101597] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4611), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101605] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6519), 1, + anon_sym_EQ, + [101615] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6521), 1, + anon_sym_EQ, + [101625] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6523), 1, + anon_sym_EQ, + [101635] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6525), 1, + anon_sym_EQ, + [101645] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1738), 1, + sym_do_group, + [101655] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6385), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101663] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6381), 1, + anon_sym_RBRACK, + ACTIONS(6527), 1, + sym__concat, + [101673] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(243), 1, + anon_sym_SEMI_SEMI, + ACTIONS(6529), 1, + anon_sym_esac, + [101683] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6531), 1, + anon_sym_EQ, + [101693] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6533), 1, + anon_sym_EQ, + [101703] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6535), 1, + anon_sym_EQ, + [101713] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6537), 1, + anon_sym_EQ, + [101723] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6539), 1, + anon_sym_esac, + ACTIONS(6541), 1, + anon_sym_SEMI_SEMI, + [101733] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6543), 1, + anon_sym_EQ, + [101743] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6375), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101751] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym_do, + STATE(1724), 1, + sym_do_group, + [101761] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4577), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101769] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1169), 2, + sym__concat, + anon_sym_RBRACE, + [101777] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1037), 2, + sym__concat, + anon_sym_RBRACE, + [101785] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6545), 1, + anon_sym_EQ, + [101795] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6547), 1, + anon_sym_EQ, + [101805] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1181), 2, + sym__concat, + anon_sym_RBRACE, + [101813] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1153), 2, + sym__concat, + anon_sym_RBRACE, + [101821] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_EQ, + [101831] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1133), 2, + sym__concat, + anon_sym_RBRACE, + [101839] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1137), 2, + sym__concat, + anon_sym_RBRACE, + [101847] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1141), 2, + sym__concat, + anon_sym_RBRACE, + [101855] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_EQ, + [101865] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6350), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101873] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6553), 1, + anon_sym_EQ, + [101883] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1485), 1, + sym_do_group, + [101893] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1145), 2, + sym__concat, + anon_sym_RBRACE, + [101901] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + anon_sym_EQ, + [101911] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6557), 1, + anon_sym_EQ, + [101921] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1149), 2, + sym__concat, + anon_sym_RBRACE, + [101929] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6336), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101937] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1165), 2, + sym__concat, + anon_sym_RBRACE, + [101945] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1177), 2, + sym__concat, + anon_sym_RBRACE, + [101953] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6559), 1, + anon_sym_EQ, + [101963] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1159), 2, + sym__concat, + anon_sym_RBRACE, + [101971] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1155), 2, + sym__concat, + anon_sym_RBRACE, + [101979] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6364), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [101987] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6561), 1, + anon_sym_EQ, + [101997] = 2, ACTIONS(55), 1, sym_comment, ACTIONS(1185), 2, sym__concat, anon_sym_RBRACE, - [100276] = 3, + [102005] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6411), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6413), 1, - aux_sym__simple_variable_name_token1, - [100286] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1166), 2, + ACTIONS(1125), 2, sym__concat, anon_sym_RBRACE, - [100294] = 3, + [102013] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(6415), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6417), 1, - aux_sym__simple_variable_name_token1, - [100304] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6421), 1, - anon_sym_EQ, - [100314] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6423), 1, - anon_sym_EQ, - [100324] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6425), 1, - anon_sym_EQ, - [100334] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6427), 1, - anon_sym_EQ, - [100344] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6429), 1, - anon_sym_EQ, - [100354] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6431), 1, - anon_sym_EQ, - [100364] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6433), 1, - anon_sym_EQ, - [100374] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6435), 1, - anon_sym_esac, - ACTIONS(6437), 1, - anon_sym_SEMI_SEMI, - [100384] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_EQ, - [100394] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1455), 1, - sym_do_group, - [100404] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6441), 1, - anon_sym_EQ, - [100414] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6443), 1, - anon_sym_EQ, - [100424] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4446), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100432] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6445), 1, - anon_sym_EQ, - [100442] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6399), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100450] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6447), 1, - anon_sym_EQ, - [100460] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6449), 1, - anon_sym_EQ, - [100470] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6451), 1, - anon_sym_esac, - ACTIONS(6453), 1, - anon_sym_SEMI_SEMI, - [100480] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6455), 1, - anon_sym_EQ, - [100490] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1247), 2, - sym__concat, - anon_sym_RBRACE, - [100498] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6457), 1, - anon_sym_EQ, - [100508] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6459), 1, - anon_sym_EQ, - [100518] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4440), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100526] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6461), 1, - anon_sym_EQ, - [100536] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1669), 1, - sym_do_group, - [100546] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6463), 1, - anon_sym_EQ, - [100556] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, - anon_sym_EQ, - [100566] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6379), 1, - anon_sym_RBRACK, ACTIONS(6467), 1, - sym__concat, - [100576] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_EQ, - [100586] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1649), 1, - sym_do_group, - [100596] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6391), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100604] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4629), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100612] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6471), 1, - anon_sym_EQ, - [100622] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4633), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100630] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6473), 1, - anon_sym_EQ, - [100640] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6475), 1, - anon_sym_EQ, - [100650] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6477), 1, - anon_sym_EQ, - [100660] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1146), 2, - sym__concat, - anon_sym_RBRACE, - [100668] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6479), 1, - anon_sym_EQ, - [100678] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1208), 2, - sym__concat, - anon_sym_RBRACE, - [100686] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6481), 1, - anon_sym_EQ, - [100696] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1150), 2, - sym__concat, - anon_sym_RBRACE, - [100704] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6483), 1, - anon_sym_EQ, - [100714] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1035), 2, - sym__concat, - anon_sym_RBRACE, - [100722] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1440), 1, - sym_do_group, - [100732] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6485), 1, - anon_sym_EQ, - [100742] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6487), 1, - anon_sym_EQ, - [100752] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1154), 2, - sym__concat, - anon_sym_RBRACE, - [100760] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(243), 1, - anon_sym_SEMI_SEMI, - ACTIONS(6489), 1, - anon_sym_esac, - [100770] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_EQ, - [100780] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1158), 2, - sym__concat, - anon_sym_RBRACE, - [100788] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_EQ, - [100798] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1162), 2, - sym__concat, - anon_sym_RBRACE, - [100806] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1170), 2, - sym__concat, - anon_sym_RBRACE, - [100814] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6495), 1, - anon_sym_EQ, - [100824] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6497), 2, - anon_sym_do, - anon_sym_then, - [100832] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6499), 1, - anon_sym_EQ, - [100842] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1067), 1, - anon_sym_RBRACE, - ACTIONS(1069), 1, - sym__special_character, - [100852] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6501), 1, - anon_sym_EQ, - [100862] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1231), 2, - sym__concat, - anon_sym_RBRACE, - [100870] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1235), 2, - sym__concat, - anon_sym_RBRACE, - [100878] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1239), 2, - sym__concat, - anon_sym_RBRACE, - [100886] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6503), 1, - anon_sym_EQ, - [100896] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_EQ, - [100906] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6507), 1, - anon_sym_EQ, - [100916] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6509), 1, - anon_sym_EQ, - [100926] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1243), 2, - sym__concat, - anon_sym_RBRACE, - [100934] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6511), 1, - anon_sym_EQ, - [100944] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6513), 1, - anon_sym_EQ, - [100954] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(203), 1, - anon_sym_SEMI_SEMI, - ACTIONS(6515), 1, - anon_sym_esac, - [100964] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1255), 2, - sym__concat, - anon_sym_RBRACE, - [100972] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1259), 2, - sym__concat, - anon_sym_RBRACE, - [100980] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1183), 2, - sym__concat, - anon_sym_RBRACE, - [100988] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6324), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [100996] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6304), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [101004] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6517), 1, - anon_sym_EQ, - [101014] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - anon_sym_EQ, - [101024] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6521), 1, - anon_sym_EQ, - [101034] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6523), 1, - anon_sym_EQ, - [101044] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6525), 1, - anon_sym_EQ, - [101054] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - anon_sym_RBRACE, - [101062] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1251), 2, - sym__concat, - anon_sym_RBRACE, - [101070] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6197), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [101078] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1179), 2, - sym__concat, - anon_sym_RBRACE, - [101086] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6288), 1, - anon_sym_RBRACK, - ACTIONS(6527), 1, - sym__concat, - [101096] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6322), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [101104] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1227), 2, - sym__concat, - anon_sym_RBRACE, - [101112] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6529), 1, - anon_sym_EQ, - [101122] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6112), 1, - anon_sym_do, - STATE(1498), 1, - sym_do_group, - [101132] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1200), 2, - sym__concat, - anon_sym_RBRACE, - [101140] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6531), 1, - anon_sym_EQ, - [101150] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1200), 2, - sym__concat, - anon_sym_RBRACE, - [101158] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6294), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [101166] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6533), 1, - anon_sym_EQ, - [101176] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6535), 1, - anon_sym_EQ, - [101186] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6092), 1, - anon_sym_do, - STATE(1697), 1, - sym_do_group, - [101196] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6306), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [101204] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6537), 1, - anon_sym_EQ, - [101214] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6539), 1, - anon_sym_EQ, - [101224] = 3, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6419), 1, - anon_sym_LBRACK, - ACTIONS(6541), 1, - anon_sym_EQ, - [101234] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6086), 1, - anon_sym_fi, - [101241] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6543), 1, - anon_sym_then, - [101248] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_RBRACE, - [101255] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6545), 1, - anon_sym_BQUOTE, - [101262] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6547), 1, - anon_sym_esac, - [101269] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6549), 1, - anon_sym_RPAREN, - [101276] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6551), 1, - anon_sym_BQUOTE, - [101283] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6553), 1, - anon_sym_RPAREN, - [101290] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_RPAREN, - [101297] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6555), 1, - anon_sym_BQUOTE, - [101304] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2607), 1, - anon_sym_RBRACE, - [101311] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4178), 1, - anon_sym_RPAREN, - [101318] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_RBRACE, - [101325] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6557), 1, - anon_sym_esac, - [101332] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3361), 1, - anon_sym_RBRACE, - [101339] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3021), 1, - anon_sym_RBRACE, - [101346] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6084), 1, - anon_sym_fi, - [101353] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6559), 1, - anon_sym_esac, - [101360] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6561), 1, - anon_sym_esac, - [101367] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3732), 1, - anon_sym_RBRACE, - [101374] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3377), 1, - anon_sym_RBRACE, - [101381] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_RBRACE, - [101388] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3255), 1, - anon_sym_RBRACE, - [101395] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4890), 1, - anon_sym_RBRACK, - [101402] = 2, - ACTIONS(55), 1, - sym_comment, ACTIONS(6563), 1, - anon_sym_RBRACK, - [101409] = 2, + anon_sym_EQ, + [102023] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6565), 1, - anon_sym_RPAREN, - [101416] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6567), 1, - anon_sym_BQUOTE, - [101423] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2565), 1, + ACTIONS(1228), 2, + sym__concat, anon_sym_RBRACE, - [101430] = 2, + [102031] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4202), 1, - anon_sym_RPAREN, - [101437] = 2, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_EQ, + [102041] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6346), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [102049] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6567), 1, + anon_sym_EQ, + [102059] = 3, ACTIONS(55), 1, sym_comment, ACTIONS(6569), 1, - anon_sym_BQUOTE, - [101444] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4369), 1, - anon_sym_RPAREN, - [101451] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6571), 1, - anon_sym_RPAREN, - [101458] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6573), 1, - anon_sym_BQUOTE, - [101465] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6575), 1, anon_sym_esac, - [101472] = 2, + ACTIONS(6571), 1, + anon_sym_SEMI_SEMI, + [102069] = 3, ACTIONS(55), 1, sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6573), 1, + anon_sym_EQ, + [102079] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6575), 1, + anon_sym_EQ, + [102089] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, ACTIONS(6577), 1, - sym_heredoc_start, - [101479] = 2, + anon_sym_EQ, + [102099] = 3, ACTIONS(55), 1, sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, ACTIONS(6579), 1, - anon_sym_RPAREN, - [101486] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3708), 1, - anon_sym_RBRACE, - [101493] = 2, + anon_sym_EQ, + [102109] = 3, ACTIONS(55), 1, sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, ACTIONS(6581), 1, - anon_sym_RPAREN, - [101500] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4371), 1, - anon_sym_RPAREN, - [101507] = 2, + anon_sym_EQ, + [102119] = 3, ACTIONS(55), 1, sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, ACTIONS(6583), 1, - anon_sym_fi, - [101514] = 2, + anon_sym_EQ, + [102129] = 2, ACTIONS(55), 1, sym_comment, + ACTIONS(1189), 2, + sym__concat, + anon_sym_RBRACE, + [102137] = 3, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, ACTIONS(6585), 1, - anon_sym_RPAREN, - [101521] = 2, + anon_sym_EQ, + [102147] = 3, ACTIONS(55), 1, sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, ACTIONS(6587), 1, - anon_sym_BQUOTE, - [101528] = 2, + anon_sym_EQ, + [102157] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1193), 2, + sym__concat, + anon_sym_RBRACE, + [102165] = 3, ACTIONS(55), 1, sym_comment, ACTIONS(6589), 1, - anon_sym_esac, - [101535] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4184), 1, - anon_sym_RPAREN, - [101542] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4217), 1, - anon_sym_RPAREN, - [101549] = 2, - ACTIONS(55), 1, - sym_comment, + anon_sym_LPAREN_LPAREN, ACTIONS(6591), 1, - anon_sym_RBRACK, - [101556] = 2, + aux_sym__simple_variable_name_token1, + [102175] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(1197), 2, + sym__concat, anon_sym_RBRACE, - [101563] = 2, + [102183] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(4215), 1, - anon_sym_RPAREN, - [101570] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_RBRACE, - [101577] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2241), 1, - anon_sym_RBRACE, - [101584] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_RBRACE, - [101591] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3237), 1, - anon_sym_RBRACE, - [101598] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4902), 1, - anon_sym_RBRACK, - [101605] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4256), 1, - anon_sym_RPAREN, - [101612] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_RBRACE, - [101619] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym_RPAREN, - [101626] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_RPAREN, - [101633] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6595), 1, - anon_sym_BQUOTE, - [101640] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6597), 1, - anon_sym_esac, - [101647] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_in, - [101654] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3335), 1, - anon_sym_RBRACE, - [101661] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_RBRACE, - [101668] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1793), 1, - anon_sym_RBRACE, - [101675] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2517), 1, - anon_sym_RBRACE, - [101682] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6601), 1, - anon_sym_RPAREN, - [101689] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6603), 1, - anon_sym_esac, - [101696] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6605), 1, - anon_sym_BQUOTE, - [101703] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6607), 1, - anon_sym_esac, - [101710] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4335), 1, - anon_sym_RPAREN, - [101717] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6609), 1, - anon_sym_in, - [101724] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_RPAREN, - [101731] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4186), 1, - anon_sym_RPAREN, - [101738] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6611), 1, - anon_sym_RPAREN, - [101745] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6613), 1, - anon_sym_BQUOTE, - [101752] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6615), 1, - anon_sym_BQUOTE, - [101759] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_RBRACE, - [101766] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3411), 1, - anon_sym_RBRACE, - [101773] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6617), 1, - anon_sym_BQUOTE, - [101780] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6619), 1, - anon_sym_RPAREN, - [101787] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6621), 1, - anon_sym_RPAREN, - [101794] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_RBRACE, - [101801] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_fi, - [101808] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6623), 1, - anon_sym_RPAREN, - [101815] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6625), 1, - anon_sym_then, - [101822] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_RBRACE, - [101829] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym_RBRACE, - [101836] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_RBRACE, - [101843] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2413), 1, - anon_sym_RBRACE, - [101850] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2675), 1, - anon_sym_RBRACE, - [101857] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3634), 1, - anon_sym_RBRACE, - [101864] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_RBRACE, - [101871] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6627), 1, - anon_sym_then, - [101878] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6629), 1, - anon_sym_BQUOTE, - [101885] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4324), 1, - anon_sym_RPAREN, - [101892] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_RBRACE, - [101899] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6631), 1, - anon_sym_BQUOTE, - [101906] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6633), 1, - anon_sym_RPAREN, - [101913] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6635), 1, - anon_sym_RPAREN, - [101920] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1671), 1, - anon_sym_RBRACE, - [101927] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3475), 1, - anon_sym_RBRACE, - [101934] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6637), 1, - anon_sym_BQUOTE, - [101941] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6639), 1, - sym_word, - [101948] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6641), 1, - anon_sym_RPAREN, - [101955] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6643), 1, - anon_sym_BQUOTE, - [101962] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6645), 1, - anon_sym_RPAREN, - [101969] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6647), 1, - anon_sym_BQUOTE, - [101976] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6649), 1, - sym_heredoc_start, - [101983] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_RPAREN, - [101990] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6651), 1, - anon_sym_RPAREN, - [101997] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6653), 1, - anon_sym_BQUOTE, - [102004] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4328), 1, - anon_sym_RPAREN, - [102011] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4209), 1, - anon_sym_RPAREN, - [102018] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - [102025] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4242), 1, - anon_sym_RPAREN, - [102032] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6657), 1, - anon_sym_RPAREN, - [102039] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4300), 1, - anon_sym_RPAREN, - [102046] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6076), 1, - anon_sym_fi, - [102053] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_RBRACE, - [102060] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2591), 1, - anon_sym_RBRACE, - [102067] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6659), 1, - anon_sym_RPAREN, - [102074] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6661), 1, - anon_sym_RPAREN, - [102081] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6663), 1, - anon_sym_esac, - [102088] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6665), 1, - anon_sym_RPAREN, - [102095] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6667), 1, - anon_sym_SEMI_SEMI, - [102102] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym_RBRACE, - [102109] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6669), 1, - ts_builtin_sym_end, - [102116] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6671), 1, - ts_builtin_sym_end, - [102123] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_RBRACE, - [102130] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4298), 1, - anon_sym_RPAREN, - [102137] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_RBRACE, - [102144] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1573), 1, - anon_sym_RBRACE, - [102151] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6673), 1, - anon_sym_BQUOTE, - [102158] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6675), 1, - anon_sym_esac, - [102165] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3652), 1, - anon_sym_RBRACE, - [102172] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_RBRACE, - [102179] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6677), 1, - anon_sym_RPAREN, - [102186] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4337), 1, - anon_sym_RPAREN, + ACTIONS(6156), 1, + anon_sym_do, + STATE(1473), 1, + sym_do_group, [102193] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6679), 1, - anon_sym_BQUOTE, - [102200] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_RPAREN, - [102207] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6681), 1, - anon_sym_RPAREN, - [102214] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(6683), 1, - anon_sym_BQUOTE, - [102221] = 2, - ACTIONS(55), 1, - sym_comment, - ACTIONS(3155), 1, + ACTIONS(1257), 2, + sym__concat, anon_sym_RBRACE, - [102228] = 2, + [102201] = 3, ACTIONS(55), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_RPAREN, + ACTIONS(6593), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6595), 1, + aux_sym__simple_variable_name_token1, + [102211] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1238), 2, + sym__concat, + anon_sym_RBRACE, + [102219] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6597), 2, + anon_sym_do, + anon_sym_then, + [102227] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1242), 2, + sym__concat, + anon_sym_RBRACE, [102235] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_RBRACE, + ACTIONS(6599), 1, + anon_sym_RBRACK, [102242] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(3596), 1, anon_sym_RBRACE, [102249] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6687), 1, - sym_word, + ACTIONS(6601), 1, + anon_sym_esac, [102256] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6689), 1, - anon_sym_esac, + ACTIONS(6603), 1, + anon_sym_in, [102263] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(3533), 1, - anon_sym_RBRACE, + ACTIONS(6605), 1, + anon_sym_esac, [102270] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6691), 1, - anon_sym_fi, + ACTIONS(6607), 1, + anon_sym_esac, [102277] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6693), 1, - anon_sym_BQUOTE, + ACTIONS(6609), 1, + anon_sym_fi, [102284] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_RBRACE, + ACTIONS(6611), 1, + anon_sym_in, [102291] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(2299), 1, - anon_sym_RBRACE, + ACTIONS(6613), 1, + anon_sym_esac, [102298] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(2335), 1, + ACTIONS(1809), 1, anon_sym_RBRACE, [102305] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6695), 1, - anon_sym_RPAREN, + ACTIONS(3436), 1, + anon_sym_RBRACE, [102312] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(2875), 1, - anon_sym_RBRACE, + ACTIONS(6615), 1, + anon_sym_RPAREN, [102319] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(249), 1, - anon_sym_SEMI_SEMI, + ACTIONS(6617), 1, + anon_sym_then, [102326] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6697), 1, - anon_sym_RPAREN, + ACTIONS(3502), 1, + anon_sym_RBRACE, [102333] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6699), 1, - anon_sym_in, + ACTIONS(2443), 1, + anon_sym_RBRACE, [102340] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_in, + ACTIONS(6619), 1, + anon_sym_RPAREN, [102347] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6703), 1, - anon_sym_BQUOTE, + ACTIONS(6621), 1, + anon_sym_esac, [102354] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(6623), 1, anon_sym_RPAREN, [102361] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6705), 1, - anon_sym_BQUOTE, + ACTIONS(3131), 1, + anon_sym_RBRACE, [102368] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(4339), 1, - anon_sym_RPAREN, + ACTIONS(6625), 1, + sym_word, [102375] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(251), 1, - anon_sym_SEMI_SEMI, + ACTIONS(3460), 1, + anon_sym_RBRACE, [102382] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6707), 1, - anon_sym_RPAREN, + ACTIONS(6627), 1, + anon_sym_esac, [102389] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(3125), 1, - anon_sym_RBRACE, + ACTIONS(6629), 1, + anon_sym_BQUOTE, [102396] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6709), 1, - anon_sym_BQUOTE, + ACTIONS(6631), 1, + anon_sym_esac, [102403] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(6711), 1, - anon_sym_SEMI_SEMI, + ACTIONS(4348), 1, + anon_sym_RPAREN, [102410] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(4399), 1, - anon_sym_RPAREN, + ACTIONS(6633), 1, + anon_sym_BQUOTE, [102417] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(4344), 1, anon_sym_RPAREN, [102424] = 2, ACTIONS(55), 1, sym_comment, - ACTIONS(1959), 1, + ACTIONS(4290), 1, + anon_sym_RPAREN, + [102431] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6132), 1, + anon_sym_fi, + [102438] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6635), 1, + anon_sym_BQUOTE, + [102445] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6637), 1, + anon_sym_RPAREN, + [102452] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3143), 1, anon_sym_RBRACE, + [102459] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6639), 1, + anon_sym_esac, + [102466] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4256), 1, + anon_sym_RPAREN, + [102473] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_RBRACE, + [102480] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_RPAREN, + [102487] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6641), 1, + anon_sym_BQUOTE, + [102494] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6643), 1, + anon_sym_RPAREN, + [102501] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_RBRACE, + [102508] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6645), 1, + anon_sym_BQUOTE, + [102515] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_RBRACE, + [102522] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6647), 1, + anon_sym_RPAREN, + [102529] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6649), 1, + anon_sym_RPAREN, + [102536] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6651), 1, + anon_sym_esac, + [102543] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3490), 1, + anon_sym_RBRACE, + [102550] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6653), 1, + anon_sym_BQUOTE, + [102557] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4354), 1, + anon_sym_RPAREN, + [102564] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6655), 1, + anon_sym_SEMI_SEMI, + [102571] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2555), 1, + anon_sym_RBRACE, + [102578] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2967), 1, + anon_sym_RBRACE, + [102585] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6657), 1, + anon_sym_SEMI_SEMI, + [102592] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_RPAREN, + [102599] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_SEMI_SEMI, + [102606] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6659), 1, + anon_sym_esac, + [102613] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6661), 1, + anon_sym_BQUOTE, + [102620] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3167), 1, + anon_sym_RBRACE, + [102627] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_RBRACE, + [102634] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6663), 1, + anon_sym_RPAREN, + [102641] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6665), 1, + anon_sym_esac, + [102648] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6142), 1, + anon_sym_fi, + [102655] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_then, + [102662] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3025), 1, + anon_sym_RBRACE, + [102669] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2401), 1, + anon_sym_RBRACE, + [102676] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6669), 1, + anon_sym_BQUOTE, + [102683] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4385), 1, + anon_sym_RPAREN, + [102690] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_RBRACE, + [102697] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6671), 1, + anon_sym_BQUOTE, + [102704] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6673), 1, + sym_heredoc_start, + [102711] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6675), 1, + anon_sym_RPAREN, + [102718] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4381), 1, + anon_sym_RPAREN, + [102725] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3412), 1, + anon_sym_RBRACE, + [102732] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6677), 1, + anon_sym_RPAREN, + [102739] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6679), 1, + anon_sym_BQUOTE, + [102746] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_RBRACE, + [102753] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3656), 1, + anon_sym_RBRACE, + [102760] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_RPAREN, + [102767] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4182), 1, + anon_sym_RPAREN, + [102774] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6681), 1, + anon_sym_BQUOTE, + [102781] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6683), 1, + anon_sym_RPAREN, + [102788] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4346), 1, + anon_sym_RPAREN, + [102795] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3195), 1, + anon_sym_RBRACE, + [102802] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6685), 1, + anon_sym_BQUOTE, + [102809] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6687), 1, + anon_sym_RPAREN, + [102816] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_RBRACE, + [102823] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(249), 1, + anon_sym_SEMI_SEMI, + [102830] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_RBRACE, + [102837] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6144), 1, + anon_sym_fi, + [102844] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6689), 1, + anon_sym_RBRACK, + [102851] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4906), 1, + anon_sym_RBRACK, + [102858] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2335), 1, + anon_sym_RBRACE, + [102865] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2909), 1, + anon_sym_RBRACE, + [102872] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6691), 1, + anon_sym_RPAREN, + [102879] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6693), 1, + anon_sym_BQUOTE, + [102886] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6695), 1, + anon_sym_RPAREN, + [102893] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4318), 1, + anon_sym_RPAREN, + [102900] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3710), 1, + anon_sym_RBRACE, + [102907] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_RBRACE, + [102914] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3388), 1, + anon_sym_RBRACE, + [102921] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6697), 1, + anon_sym_RPAREN, + [102928] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6699), 1, + anon_sym_BQUOTE, + [102935] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3221), 1, + anon_sym_RBRACE, + [102942] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6701), 1, + anon_sym_RPAREN, + [102949] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6703), 1, + anon_sym_BQUOTE, + [102956] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4320), 1, + anon_sym_RPAREN, + [102963] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4322), 1, + anon_sym_RPAREN, + [102970] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6705), 1, + anon_sym_BQUOTE, + [102977] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4222), 1, + anon_sym_RPAREN, + [102984] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6707), 1, + anon_sym_RPAREN, + [102991] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6709), 1, + anon_sym_then, + [102998] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4894), 1, + anon_sym_RBRACK, + [103005] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6711), 1, + anon_sym_RPAREN, + [103012] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_RBRACE, + [103019] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_RPAREN, + [103026] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6713), 1, + anon_sym_BQUOTE, + [103033] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6715), 1, + anon_sym_RPAREN, + [103040] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_RBRACE, + [103047] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6717), 1, + anon_sym_RPAREN, + [103054] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6719), 1, + sym_heredoc_start, + [103061] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6721), 1, + anon_sym_BQUOTE, + [103068] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4260), 1, + anon_sym_RPAREN, + [103075] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2845), 1, + anon_sym_RBRACE, + [103082] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6723), 1, + anon_sym_RPAREN, + [103089] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3568), 1, + anon_sym_RBRACE, + [103096] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6725), 1, + anon_sym_BQUOTE, + [103103] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_RBRACE, + [103110] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3736), 1, + anon_sym_RBRACE, + [103117] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_RPAREN, + [103124] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_RBRACE, + [103131] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3323), 1, + anon_sym_RBRACE, + [103138] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_RBRACE, + [103145] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2621), 1, + anon_sym_RBRACE, + [103152] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6727), 1, + anon_sym_RPAREN, + [103159] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6729), 1, + ts_builtin_sym_end, + [103166] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6731), 1, + ts_builtin_sym_end, + [103173] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6733), 1, + anon_sym_BQUOTE, + [103180] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4196), 1, + anon_sym_RPAREN, + [103187] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_RBRACE, + [103194] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6138), 1, + anon_sym_fi, + [103201] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6735), 1, + anon_sym_esac, + [103208] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2679), 1, + anon_sym_RBRACE, + [103215] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4314), 1, + anon_sym_RPAREN, + [103222] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6737), 1, + anon_sym_BQUOTE, + [103229] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6739), 1, + anon_sym_RPAREN, + [103236] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4184), 1, + anon_sym_RPAREN, + [103243] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_BQUOTE, + [103250] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1949), 1, + anon_sym_RBRACE, + [103257] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6743), 1, + sym_word, + [103264] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6745), 1, + anon_sym_RPAREN, + [103271] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_RPAREN, + [103278] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_RBRACE, + [103285] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2771), 1, + anon_sym_RBRACE, + [103292] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2107), 1, + anon_sym_RBRACE, + [103299] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_RBRACE, + [103306] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_RPAREN, + [103313] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6749), 1, + anon_sym_RPAREN, + [103320] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6751), 1, + anon_sym_BQUOTE, + [103327] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6753), 1, + anon_sym_RPAREN, + [103334] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6755), 1, + anon_sym_in, + [103341] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6757), 1, + anon_sym_in, + [103348] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6759), 1, + anon_sym_BQUOTE, + [103355] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6761), 1, + anon_sym_BQUOTE, + [103362] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_RPAREN, + [103369] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4198), 1, + anon_sym_RPAREN, + [103376] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4232), 1, + anon_sym_RPAREN, + [103383] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3544), 1, + anon_sym_RBRACE, + [103390] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(3293), 1, + anon_sym_RBRACE, + [103397] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(4262), 1, + anon_sym_RPAREN, + [103404] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym_RBRACE, + [103411] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(1999), 1, + anon_sym_RBRACE, + [103418] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6765), 1, + anon_sym_BQUOTE, + [103425] = 2, + ACTIONS(55), 1, + sym_comment, + ACTIONS(6767), 1, + anon_sym_fi, }; static uint32_t ts_small_parse_table_map[] = { @@ -99232,74 +100132,74 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(136)] = 708, [SMALL_STATE(137)] = 789, [SMALL_STATE(138)] = 851, - [SMALL_STATE(139)] = 929, - [SMALL_STATE(140)] = 991, - [SMALL_STATE(141)] = 1053, - [SMALL_STATE(142)] = 1131, + [SMALL_STATE(139)] = 913, + [SMALL_STATE(140)] = 975, + [SMALL_STATE(141)] = 1037, + [SMALL_STATE(142)] = 1115, [SMALL_STATE(143)] = 1193, [SMALL_STATE(144)] = 1255, - [SMALL_STATE(145)] = 1332, - [SMALL_STATE(146)] = 1393, - [SMALL_STATE(147)] = 1452, - [SMALL_STATE(148)] = 1529, + [SMALL_STATE(145)] = 1314, + [SMALL_STATE(146)] = 1391, + [SMALL_STATE(147)] = 1448, + [SMALL_STATE(148)] = 1509, [SMALL_STATE(149)] = 1586, - [SMALL_STATE(150)] = 1663, - [SMALL_STATE(151)] = 1724, - [SMALL_STATE(152)] = 1801, - [SMALL_STATE(153)] = 1860, - [SMALL_STATE(154)] = 1937, - [SMALL_STATE(155)] = 2014, - [SMALL_STATE(156)] = 2073, - [SMALL_STATE(157)] = 2150, - [SMALL_STATE(158)] = 2227, - [SMALL_STATE(159)] = 2304, - [SMALL_STATE(160)] = 2365, - [SMALL_STATE(161)] = 2426, - [SMALL_STATE(162)] = 2485, - [SMALL_STATE(163)] = 2536, - [SMALL_STATE(164)] = 2597, - [SMALL_STATE(165)] = 2656, - [SMALL_STATE(166)] = 2707, - [SMALL_STATE(167)] = 2784, - [SMALL_STATE(168)] = 2861, - [SMALL_STATE(169)] = 2938, - [SMALL_STATE(170)] = 3015, - [SMALL_STATE(171)] = 3092, - [SMALL_STATE(172)] = 3151, - [SMALL_STATE(173)] = 3212, + [SMALL_STATE(150)] = 1645, + [SMALL_STATE(151)] = 1722, + [SMALL_STATE(152)] = 1783, + [SMALL_STATE(153)] = 1844, + [SMALL_STATE(154)] = 1903, + [SMALL_STATE(155)] = 1964, + [SMALL_STATE(156)] = 2023, + [SMALL_STATE(157)] = 2100, + [SMALL_STATE(158)] = 2161, + [SMALL_STATE(159)] = 2238, + [SMALL_STATE(160)] = 2315, + [SMALL_STATE(161)] = 2374, + [SMALL_STATE(162)] = 2451, + [SMALL_STATE(163)] = 2528, + [SMALL_STATE(164)] = 2605, + [SMALL_STATE(165)] = 2666, + [SMALL_STATE(166)] = 2743, + [SMALL_STATE(167)] = 2802, + [SMALL_STATE(168)] = 2879, + [SMALL_STATE(169)] = 2956, + [SMALL_STATE(170)] = 3007, + [SMALL_STATE(171)] = 3084, + [SMALL_STATE(172)] = 3161, + [SMALL_STATE(173)] = 3238, [SMALL_STATE(174)] = 3289, [SMALL_STATE(175)] = 3363, - [SMALL_STATE(176)] = 3421, - [SMALL_STATE(177)] = 3495, - [SMALL_STATE(178)] = 3555, - [SMALL_STATE(179)] = 3629, - [SMALL_STATE(180)] = 3703, - [SMALL_STATE(181)] = 3777, - [SMALL_STATE(182)] = 3851, - [SMALL_STATE(183)] = 3925, - [SMALL_STATE(184)] = 3999, - [SMALL_STATE(185)] = 4055, - [SMALL_STATE(186)] = 4129, - [SMALL_STATE(187)] = 4203, - [SMALL_STATE(188)] = 4277, - [SMALL_STATE(189)] = 4337, - [SMALL_STATE(190)] = 4395, - [SMALL_STATE(191)] = 4469, - [SMALL_STATE(192)] = 4543, + [SMALL_STATE(176)] = 3437, + [SMALL_STATE(177)] = 3511, + [SMALL_STATE(178)] = 3571, + [SMALL_STATE(179)] = 3645, + [SMALL_STATE(180)] = 3719, + [SMALL_STATE(181)] = 3793, + [SMALL_STATE(182)] = 3867, + [SMALL_STATE(183)] = 3941, + [SMALL_STATE(184)] = 4015, + [SMALL_STATE(185)] = 4089, + [SMALL_STATE(186)] = 4163, + [SMALL_STATE(187)] = 4237, + [SMALL_STATE(188)] = 4295, + [SMALL_STATE(189)] = 4355, + [SMALL_STATE(190)] = 4413, + [SMALL_STATE(191)] = 4473, + [SMALL_STATE(192)] = 4547, [SMALL_STATE(193)] = 4603, - [SMALL_STATE(194)] = 4674, - [SMALL_STATE(195)] = 4727, - [SMALL_STATE(196)] = 4818, - [SMALL_STATE(197)] = 4869, - [SMALL_STATE(198)] = 4922, - [SMALL_STATE(199)] = 5013, - [SMALL_STATE(200)] = 5064, - [SMALL_STATE(201)] = 5155, - [SMALL_STATE(202)] = 5206, - [SMALL_STATE(203)] = 5297, - [SMALL_STATE(204)] = 5368, - [SMALL_STATE(205)] = 5419, - [SMALL_STATE(206)] = 5472, + [SMALL_STATE(194)] = 4654, + [SMALL_STATE(195)] = 4745, + [SMALL_STATE(196)] = 4798, + [SMALL_STATE(197)] = 4889, + [SMALL_STATE(198)] = 4940, + [SMALL_STATE(199)] = 4991, + [SMALL_STATE(200)] = 5062, + [SMALL_STATE(201)] = 5115, + [SMALL_STATE(202)] = 5168, + [SMALL_STATE(203)] = 5259, + [SMALL_STATE(204)] = 5310, + [SMALL_STATE(205)] = 5401, + [SMALL_STATE(206)] = 5454, [SMALL_STATE(207)] = 5525, [SMALL_STATE(208)] = 5575, [SMALL_STATE(209)] = 5625, @@ -99307,2590 +100207,2616 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(211)] = 5725, [SMALL_STATE(212)] = 5773, [SMALL_STATE(213)] = 5821, - [SMALL_STATE(214)] = 5870, + [SMALL_STATE(214)] = 5868, [SMALL_STATE(215)] = 5917, [SMALL_STATE(216)] = 5966, - [SMALL_STATE(217)] = 6015, + [SMALL_STATE(217)] = 6013, [SMALL_STATE(218)] = 6062, [SMALL_STATE(219)] = 6111, - [SMALL_STATE(220)] = 6164, + [SMALL_STATE(220)] = 6172, [SMALL_STATE(221)] = 6225, - [SMALL_STATE(222)] = 6276, - [SMALL_STATE(223)] = 6337, - [SMALL_STATE(224)] = 6388, - [SMALL_STATE(225)] = 6439, - [SMALL_STATE(226)] = 6492, - [SMALL_STATE(227)] = 6543, - [SMALL_STATE(228)] = 6604, - [SMALL_STATE(229)] = 6665, - [SMALL_STATE(230)] = 6716, - [SMALL_STATE(231)] = 6767, - [SMALL_STATE(232)] = 6828, - [SMALL_STATE(233)] = 6881, + [SMALL_STATE(222)] = 6278, + [SMALL_STATE(223)] = 6329, + [SMALL_STATE(224)] = 6390, + [SMALL_STATE(225)] = 6451, + [SMALL_STATE(226)] = 6512, + [SMALL_STATE(227)] = 6563, + [SMALL_STATE(228)] = 6624, + [SMALL_STATE(229)] = 6675, + [SMALL_STATE(230)] = 6736, + [SMALL_STATE(231)] = 6787, + [SMALL_STATE(232)] = 6838, + [SMALL_STATE(233)] = 6889, [SMALL_STATE(234)] = 6942, - [SMALL_STATE(235)] = 6990, - [SMALL_STATE(236)] = 7038, - [SMALL_STATE(237)] = 7096, - [SMALL_STATE(238)] = 7154, - [SMALL_STATE(239)] = 7202, - [SMALL_STATE(240)] = 7250, - [SMALL_STATE(241)] = 7298, - [SMALL_STATE(242)] = 7346, - [SMALL_STATE(243)] = 7394, - [SMALL_STATE(244)] = 7442, - [SMALL_STATE(245)] = 7490, - [SMALL_STATE(246)] = 7538, - [SMALL_STATE(247)] = 7586, - [SMALL_STATE(248)] = 7634, - [SMALL_STATE(249)] = 7682, - [SMALL_STATE(250)] = 7730, - [SMALL_STATE(251)] = 7790, - [SMALL_STATE(252)] = 7838, - [SMALL_STATE(253)] = 7886, - [SMALL_STATE(254)] = 7934, - [SMALL_STATE(255)] = 7982, - [SMALL_STATE(256)] = 8040, - [SMALL_STATE(257)] = 8088, - [SMALL_STATE(258)] = 8136, - [SMALL_STATE(259)] = 8184, - [SMALL_STATE(260)] = 8236, - [SMALL_STATE(261)] = 8284, - [SMALL_STATE(262)] = 8332, - [SMALL_STATE(263)] = 8380, - [SMALL_STATE(264)] = 8428, - [SMALL_STATE(265)] = 8476, - [SMALL_STATE(266)] = 8536, - [SMALL_STATE(267)] = 8596, + [SMALL_STATE(235)] = 6992, + [SMALL_STATE(236)] = 7040, + [SMALL_STATE(237)] = 7100, + [SMALL_STATE(238)] = 7152, + [SMALL_STATE(239)] = 7200, + [SMALL_STATE(240)] = 7248, + [SMALL_STATE(241)] = 7296, + [SMALL_STATE(242)] = 7344, + [SMALL_STATE(243)] = 7392, + [SMALL_STATE(244)] = 7440, + [SMALL_STATE(245)] = 7488, + [SMALL_STATE(246)] = 7536, + [SMALL_STATE(247)] = 7584, + [SMALL_STATE(248)] = 7632, + [SMALL_STATE(249)] = 7692, + [SMALL_STATE(250)] = 7740, + [SMALL_STATE(251)] = 7788, + [SMALL_STATE(252)] = 7836, + [SMALL_STATE(253)] = 7884, + [SMALL_STATE(254)] = 7942, + [SMALL_STATE(255)] = 7990, + [SMALL_STATE(256)] = 8050, + [SMALL_STATE(257)] = 8098, + [SMALL_STATE(258)] = 8156, + [SMALL_STATE(259)] = 8214, + [SMALL_STATE(260)] = 8262, + [SMALL_STATE(261)] = 8310, + [SMALL_STATE(262)] = 8358, + [SMALL_STATE(263)] = 8406, + [SMALL_STATE(264)] = 8454, + [SMALL_STATE(265)] = 8502, + [SMALL_STATE(266)] = 8550, + [SMALL_STATE(267)] = 8598, [SMALL_STATE(268)] = 8646, - [SMALL_STATE(269)] = 8706, - [SMALL_STATE(270)] = 8754, - [SMALL_STATE(271)] = 8812, + [SMALL_STATE(269)] = 8704, + [SMALL_STATE(270)] = 8752, + [SMALL_STATE(271)] = 8800, [SMALL_STATE(272)] = 8860, [SMALL_STATE(273)] = 8908, [SMALL_STATE(274)] = 8956, [SMALL_STATE(275)] = 9004, [SMALL_STATE(276)] = 9052, [SMALL_STATE(277)] = 9100, - [SMALL_STATE(278)] = 9153, - [SMALL_STATE(279)] = 9200, - [SMALL_STATE(280)] = 9247, - [SMALL_STATE(281)] = 9294, - [SMALL_STATE(282)] = 9341, - [SMALL_STATE(283)] = 9384, - [SMALL_STATE(284)] = 9427, - [SMALL_STATE(285)] = 9470, - [SMALL_STATE(286)] = 9513, - [SMALL_STATE(287)] = 9556, - [SMALL_STATE(288)] = 9599, - [SMALL_STATE(289)] = 9642, - [SMALL_STATE(290)] = 9685, - [SMALL_STATE(291)] = 9732, - [SMALL_STATE(292)] = 9779, - [SMALL_STATE(293)] = 9822, - [SMALL_STATE(294)] = 9865, - [SMALL_STATE(295)] = 9908, - [SMALL_STATE(296)] = 9951, - [SMALL_STATE(297)] = 9998, - [SMALL_STATE(298)] = 10045, - [SMALL_STATE(299)] = 10088, - [SMALL_STATE(300)] = 10135, - [SMALL_STATE(301)] = 10178, - [SMALL_STATE(302)] = 10225, - [SMALL_STATE(303)] = 10272, - [SMALL_STATE(304)] = 10319, - [SMALL_STATE(305)] = 10362, - [SMALL_STATE(306)] = 10405, - [SMALL_STATE(307)] = 10448, - [SMALL_STATE(308)] = 10491, - [SMALL_STATE(309)] = 10534, - [SMALL_STATE(310)] = 10577, - [SMALL_STATE(311)] = 10620, - [SMALL_STATE(312)] = 10663, - [SMALL_STATE(313)] = 10706, - [SMALL_STATE(314)] = 10749, - [SMALL_STATE(315)] = 10792, - [SMALL_STATE(316)] = 10835, - [SMALL_STATE(317)] = 10878, - [SMALL_STATE(318)] = 10921, - [SMALL_STATE(319)] = 10964, - [SMALL_STATE(320)] = 11011, - [SMALL_STATE(321)] = 11054, - [SMALL_STATE(322)] = 11097, - [SMALL_STATE(323)] = 11140, - [SMALL_STATE(324)] = 11183, - [SMALL_STATE(325)] = 11226, - [SMALL_STATE(326)] = 11269, - [SMALL_STATE(327)] = 11316, - [SMALL_STATE(328)] = 11359, - [SMALL_STATE(329)] = 11402, - [SMALL_STATE(330)] = 11449, - [SMALL_STATE(331)] = 11492, - [SMALL_STATE(332)] = 11535, - [SMALL_STATE(333)] = 11578, - [SMALL_STATE(334)] = 11621, - [SMALL_STATE(335)] = 11664, - [SMALL_STATE(336)] = 11707, - [SMALL_STATE(337)] = 11750, - [SMALL_STATE(338)] = 11793, - [SMALL_STATE(339)] = 11836, - [SMALL_STATE(340)] = 11879, - [SMALL_STATE(341)] = 11922, - [SMALL_STATE(342)] = 11965, - [SMALL_STATE(343)] = 12008, - [SMALL_STATE(344)] = 12051, - [SMALL_STATE(345)] = 12094, - [SMALL_STATE(346)] = 12137, - [SMALL_STATE(347)] = 12180, - [SMALL_STATE(348)] = 12223, - [SMALL_STATE(349)] = 12266, - [SMALL_STATE(350)] = 12309, - [SMALL_STATE(351)] = 12352, - [SMALL_STATE(352)] = 12395, - [SMALL_STATE(353)] = 12442, - [SMALL_STATE(354)] = 12485, - [SMALL_STATE(355)] = 12532, - [SMALL_STATE(356)] = 12575, - [SMALL_STATE(357)] = 12622, - [SMALL_STATE(358)] = 12669, - [SMALL_STATE(359)] = 12716, - [SMALL_STATE(360)] = 12763, - [SMALL_STATE(361)] = 12810, - [SMALL_STATE(362)] = 12857, - [SMALL_STATE(363)] = 12904, - [SMALL_STATE(364)] = 12947, - [SMALL_STATE(365)] = 12994, - [SMALL_STATE(366)] = 13037, - [SMALL_STATE(367)] = 13080, - [SMALL_STATE(368)] = 13123, - [SMALL_STATE(369)] = 13166, - [SMALL_STATE(370)] = 13209, - [SMALL_STATE(371)] = 13252, - [SMALL_STATE(372)] = 13295, - [SMALL_STATE(373)] = 13338, - [SMALL_STATE(374)] = 13381, - [SMALL_STATE(375)] = 13424, - [SMALL_STATE(376)] = 13467, - [SMALL_STATE(377)] = 13510, - [SMALL_STATE(378)] = 13553, - [SMALL_STATE(379)] = 13596, - [SMALL_STATE(380)] = 13639, - [SMALL_STATE(381)] = 13682, - [SMALL_STATE(382)] = 13725, - [SMALL_STATE(383)] = 13768, - [SMALL_STATE(384)] = 13811, - [SMALL_STATE(385)] = 13854, - [SMALL_STATE(386)] = 13897, - [SMALL_STATE(387)] = 13940, - [SMALL_STATE(388)] = 13983, - [SMALL_STATE(389)] = 14026, - [SMALL_STATE(390)] = 14069, - [SMALL_STATE(391)] = 14112, - [SMALL_STATE(392)] = 14155, - [SMALL_STATE(393)] = 14198, - [SMALL_STATE(394)] = 14241, - [SMALL_STATE(395)] = 14284, - [SMALL_STATE(396)] = 14327, - [SMALL_STATE(397)] = 14370, - [SMALL_STATE(398)] = 14413, - [SMALL_STATE(399)] = 14456, - [SMALL_STATE(400)] = 14503, - [SMALL_STATE(401)] = 14546, - [SMALL_STATE(402)] = 14589, - [SMALL_STATE(403)] = 14632, - [SMALL_STATE(404)] = 14675, - [SMALL_STATE(405)] = 14718, - [SMALL_STATE(406)] = 14761, - [SMALL_STATE(407)] = 14804, - [SMALL_STATE(408)] = 14847, - [SMALL_STATE(409)] = 14890, - [SMALL_STATE(410)] = 14933, - [SMALL_STATE(411)] = 14980, - [SMALL_STATE(412)] = 15027, - [SMALL_STATE(413)] = 15074, - [SMALL_STATE(414)] = 15121, - [SMALL_STATE(415)] = 15164, - [SMALL_STATE(416)] = 15211, - [SMALL_STATE(417)] = 15258, - [SMALL_STATE(418)] = 15305, - [SMALL_STATE(419)] = 15348, - [SMALL_STATE(420)] = 15391, - [SMALL_STATE(421)] = 15434, - [SMALL_STATE(422)] = 15477, - [SMALL_STATE(423)] = 15520, - [SMALL_STATE(424)] = 15563, - [SMALL_STATE(425)] = 15610, - [SMALL_STATE(426)] = 15657, - [SMALL_STATE(427)] = 15700, - [SMALL_STATE(428)] = 15747, - [SMALL_STATE(429)] = 15794, - [SMALL_STATE(430)] = 15841, - [SMALL_STATE(431)] = 15884, - [SMALL_STATE(432)] = 15927, - [SMALL_STATE(433)] = 15970, - [SMALL_STATE(434)] = 16013, - [SMALL_STATE(435)] = 16056, - [SMALL_STATE(436)] = 16099, - [SMALL_STATE(437)] = 16142, - [SMALL_STATE(438)] = 16185, - [SMALL_STATE(439)] = 16228, - [SMALL_STATE(440)] = 16271, - [SMALL_STATE(441)] = 16314, - [SMALL_STATE(442)] = 16357, - [SMALL_STATE(443)] = 16400, - [SMALL_STATE(444)] = 16443, - [SMALL_STATE(445)] = 16486, - [SMALL_STATE(446)] = 16533, - [SMALL_STATE(447)] = 16576, - [SMALL_STATE(448)] = 16623, - [SMALL_STATE(449)] = 16670, - [SMALL_STATE(450)] = 16717, - [SMALL_STATE(451)] = 16760, - [SMALL_STATE(452)] = 16803, - [SMALL_STATE(453)] = 16846, - [SMALL_STATE(454)] = 16889, - [SMALL_STATE(455)] = 16932, - [SMALL_STATE(456)] = 16979, - [SMALL_STATE(457)] = 17022, - [SMALL_STATE(458)] = 17065, - [SMALL_STATE(459)] = 17108, - [SMALL_STATE(460)] = 17151, - [SMALL_STATE(461)] = 17194, - [SMALL_STATE(462)] = 17237, - [SMALL_STATE(463)] = 17280, - [SMALL_STATE(464)] = 17323, - [SMALL_STATE(465)] = 17366, - [SMALL_STATE(466)] = 17409, - [SMALL_STATE(467)] = 17452, - [SMALL_STATE(468)] = 17495, - [SMALL_STATE(469)] = 17538, - [SMALL_STATE(470)] = 17581, - [SMALL_STATE(471)] = 17624, - [SMALL_STATE(472)] = 17671, - [SMALL_STATE(473)] = 17718, - [SMALL_STATE(474)] = 17760, - [SMALL_STATE(475)] = 17802, - [SMALL_STATE(476)] = 17844, - [SMALL_STATE(477)] = 17886, - [SMALL_STATE(478)] = 17928, - [SMALL_STATE(479)] = 17970, - [SMALL_STATE(480)] = 18012, - [SMALL_STATE(481)] = 18054, - [SMALL_STATE(482)] = 18096, - [SMALL_STATE(483)] = 18138, - [SMALL_STATE(484)] = 18180, - [SMALL_STATE(485)] = 18222, - [SMALL_STATE(486)] = 18264, - [SMALL_STATE(487)] = 18306, - [SMALL_STATE(488)] = 18352, - [SMALL_STATE(489)] = 18394, - [SMALL_STATE(490)] = 18436, - [SMALL_STATE(491)] = 18478, - [SMALL_STATE(492)] = 18520, - [SMALL_STATE(493)] = 18562, - [SMALL_STATE(494)] = 18604, - [SMALL_STATE(495)] = 18646, - [SMALL_STATE(496)] = 18688, - [SMALL_STATE(497)] = 18730, - [SMALL_STATE(498)] = 18772, - [SMALL_STATE(499)] = 18814, - [SMALL_STATE(500)] = 18856, - [SMALL_STATE(501)] = 18898, - [SMALL_STATE(502)] = 18940, - [SMALL_STATE(503)] = 18982, - [SMALL_STATE(504)] = 19024, - [SMALL_STATE(505)] = 19066, - [SMALL_STATE(506)] = 19108, - [SMALL_STATE(507)] = 19150, - [SMALL_STATE(508)] = 19192, - [SMALL_STATE(509)] = 19234, - [SMALL_STATE(510)] = 19276, - [SMALL_STATE(511)] = 19318, - [SMALL_STATE(512)] = 19360, - [SMALL_STATE(513)] = 19402, - [SMALL_STATE(514)] = 19444, - [SMALL_STATE(515)] = 19486, - [SMALL_STATE(516)] = 19528, - [SMALL_STATE(517)] = 19570, - [SMALL_STATE(518)] = 19612, - [SMALL_STATE(519)] = 19658, - [SMALL_STATE(520)] = 19700, - [SMALL_STATE(521)] = 19742, - [SMALL_STATE(522)] = 19784, - [SMALL_STATE(523)] = 19826, - [SMALL_STATE(524)] = 19868, - [SMALL_STATE(525)] = 19910, - [SMALL_STATE(526)] = 19952, - [SMALL_STATE(527)] = 19994, - [SMALL_STATE(528)] = 20036, - [SMALL_STATE(529)] = 20078, - [SMALL_STATE(530)] = 20120, - [SMALL_STATE(531)] = 20162, - [SMALL_STATE(532)] = 20204, - [SMALL_STATE(533)] = 20246, - [SMALL_STATE(534)] = 20288, - [SMALL_STATE(535)] = 20330, - [SMALL_STATE(536)] = 20372, - [SMALL_STATE(537)] = 20424, - [SMALL_STATE(538)] = 20466, - [SMALL_STATE(539)] = 20508, - [SMALL_STATE(540)] = 20550, - [SMALL_STATE(541)] = 20592, - [SMALL_STATE(542)] = 20634, - [SMALL_STATE(543)] = 20680, - [SMALL_STATE(544)] = 20726, - [SMALL_STATE(545)] = 20768, - [SMALL_STATE(546)] = 20810, - [SMALL_STATE(547)] = 20852, - [SMALL_STATE(548)] = 20894, - [SMALL_STATE(549)] = 20936, - [SMALL_STATE(550)] = 20978, - [SMALL_STATE(551)] = 21020, - [SMALL_STATE(552)] = 21062, - [SMALL_STATE(553)] = 21104, - [SMALL_STATE(554)] = 21146, - [SMALL_STATE(555)] = 21188, - [SMALL_STATE(556)] = 21234, - [SMALL_STATE(557)] = 21276, - [SMALL_STATE(558)] = 21318, - [SMALL_STATE(559)] = 21360, - [SMALL_STATE(560)] = 21402, - [SMALL_STATE(561)] = 21444, - [SMALL_STATE(562)] = 21486, - [SMALL_STATE(563)] = 21538, - [SMALL_STATE(564)] = 21580, - [SMALL_STATE(565)] = 21622, - [SMALL_STATE(566)] = 21668, - [SMALL_STATE(567)] = 21710, - [SMALL_STATE(568)] = 21752, - [SMALL_STATE(569)] = 21794, - [SMALL_STATE(570)] = 21836, - [SMALL_STATE(571)] = 21878, - [SMALL_STATE(572)] = 21920, - [SMALL_STATE(573)] = 21962, - [SMALL_STATE(574)] = 22008, - [SMALL_STATE(575)] = 22050, - [SMALL_STATE(576)] = 22092, - [SMALL_STATE(577)] = 22134, - [SMALL_STATE(578)] = 22176, - [SMALL_STATE(579)] = 22218, - [SMALL_STATE(580)] = 22260, - [SMALL_STATE(581)] = 22302, - [SMALL_STATE(582)] = 22376, - [SMALL_STATE(583)] = 22418, - [SMALL_STATE(584)] = 22460, - [SMALL_STATE(585)] = 22502, - [SMALL_STATE(586)] = 22544, - [SMALL_STATE(587)] = 22586, - [SMALL_STATE(588)] = 22628, - [SMALL_STATE(589)] = 22670, - [SMALL_STATE(590)] = 22712, - [SMALL_STATE(591)] = 22758, - [SMALL_STATE(592)] = 22804, - [SMALL_STATE(593)] = 22878, - [SMALL_STATE(594)] = 22920, - [SMALL_STATE(595)] = 22962, - [SMALL_STATE(596)] = 23004, - [SMALL_STATE(597)] = 23078, - [SMALL_STATE(598)] = 23120, - [SMALL_STATE(599)] = 23162, - [SMALL_STATE(600)] = 23204, - [SMALL_STATE(601)] = 23246, - [SMALL_STATE(602)] = 23288, - [SMALL_STATE(603)] = 23330, - [SMALL_STATE(604)] = 23372, - [SMALL_STATE(605)] = 23414, - [SMALL_STATE(606)] = 23456, - [SMALL_STATE(607)] = 23530, - [SMALL_STATE(608)] = 23572, - [SMALL_STATE(609)] = 23614, - [SMALL_STATE(610)] = 23656, - [SMALL_STATE(611)] = 23698, - [SMALL_STATE(612)] = 23740, - [SMALL_STATE(613)] = 23782, - [SMALL_STATE(614)] = 23824, - [SMALL_STATE(615)] = 23866, - [SMALL_STATE(616)] = 23908, - [SMALL_STATE(617)] = 23950, - [SMALL_STATE(618)] = 23992, - [SMALL_STATE(619)] = 24034, - [SMALL_STATE(620)] = 24076, - [SMALL_STATE(621)] = 24118, - [SMALL_STATE(622)] = 24160, - [SMALL_STATE(623)] = 24206, - [SMALL_STATE(624)] = 24248, - [SMALL_STATE(625)] = 24290, - [SMALL_STATE(626)] = 24336, - [SMALL_STATE(627)] = 24378, - [SMALL_STATE(628)] = 24420, - [SMALL_STATE(629)] = 24462, - [SMALL_STATE(630)] = 24504, - [SMALL_STATE(631)] = 24546, - [SMALL_STATE(632)] = 24588, - [SMALL_STATE(633)] = 24630, - [SMALL_STATE(634)] = 24672, - [SMALL_STATE(635)] = 24714, - [SMALL_STATE(636)] = 24756, - [SMALL_STATE(637)] = 24798, - [SMALL_STATE(638)] = 24840, - [SMALL_STATE(639)] = 24882, - [SMALL_STATE(640)] = 24924, - [SMALL_STATE(641)] = 24966, - [SMALL_STATE(642)] = 25008, - [SMALL_STATE(643)] = 25050, - [SMALL_STATE(644)] = 25092, - [SMALL_STATE(645)] = 25134, - [SMALL_STATE(646)] = 25176, - [SMALL_STATE(647)] = 25218, - [SMALL_STATE(648)] = 25260, - [SMALL_STATE(649)] = 25302, - [SMALL_STATE(650)] = 25344, - [SMALL_STATE(651)] = 25386, - [SMALL_STATE(652)] = 25428, - [SMALL_STATE(653)] = 25470, - [SMALL_STATE(654)] = 25516, - [SMALL_STATE(655)] = 25558, - [SMALL_STATE(656)] = 25600, - [SMALL_STATE(657)] = 25642, - [SMALL_STATE(658)] = 25684, - [SMALL_STATE(659)] = 25726, - [SMALL_STATE(660)] = 25768, - [SMALL_STATE(661)] = 25810, - [SMALL_STATE(662)] = 25852, - [SMALL_STATE(663)] = 25894, - [SMALL_STATE(664)] = 25936, - [SMALL_STATE(665)] = 25978, - [SMALL_STATE(666)] = 26019, - [SMALL_STATE(667)] = 26060, - [SMALL_STATE(668)] = 26101, - [SMALL_STATE(669)] = 26142, - [SMALL_STATE(670)] = 26183, - [SMALL_STATE(671)] = 26224, - [SMALL_STATE(672)] = 26265, - [SMALL_STATE(673)] = 26306, - [SMALL_STATE(674)] = 26347, - [SMALL_STATE(675)] = 26388, - [SMALL_STATE(676)] = 26429, - [SMALL_STATE(677)] = 26470, - [SMALL_STATE(678)] = 26511, - [SMALL_STATE(679)] = 26552, - [SMALL_STATE(680)] = 26593, - [SMALL_STATE(681)] = 26642, - [SMALL_STATE(682)] = 26706, - [SMALL_STATE(683)] = 26760, - [SMALL_STATE(684)] = 26824, - [SMALL_STATE(685)] = 26888, - [SMALL_STATE(686)] = 26952, - [SMALL_STATE(687)] = 27016, - [SMALL_STATE(688)] = 27080, - [SMALL_STATE(689)] = 27132, - [SMALL_STATE(690)] = 27184, - [SMALL_STATE(691)] = 27236, - [SMALL_STATE(692)] = 27301, - [SMALL_STATE(693)] = 27366, - [SMALL_STATE(694)] = 27431, - [SMALL_STATE(695)] = 27496, - [SMALL_STATE(696)] = 27561, - [SMALL_STATE(697)] = 27626, - [SMALL_STATE(698)] = 27691, - [SMALL_STATE(699)] = 27756, - [SMALL_STATE(700)] = 27821, - [SMALL_STATE(701)] = 27886, - [SMALL_STATE(702)] = 27951, - [SMALL_STATE(703)] = 28016, - [SMALL_STATE(704)] = 28081, - [SMALL_STATE(705)] = 28146, - [SMALL_STATE(706)] = 28211, - [SMALL_STATE(707)] = 28276, - [SMALL_STATE(708)] = 28341, - [SMALL_STATE(709)] = 28406, - [SMALL_STATE(710)] = 28471, - [SMALL_STATE(711)] = 28536, - [SMALL_STATE(712)] = 28601, - [SMALL_STATE(713)] = 28666, - [SMALL_STATE(714)] = 28731, - [SMALL_STATE(715)] = 28796, - [SMALL_STATE(716)] = 28861, - [SMALL_STATE(717)] = 28926, - [SMALL_STATE(718)] = 28991, - [SMALL_STATE(719)] = 29056, - [SMALL_STATE(720)] = 29121, - [SMALL_STATE(721)] = 29186, - [SMALL_STATE(722)] = 29251, - [SMALL_STATE(723)] = 29316, - [SMALL_STATE(724)] = 29381, - [SMALL_STATE(725)] = 29446, - [SMALL_STATE(726)] = 29511, - [SMALL_STATE(727)] = 29576, - [SMALL_STATE(728)] = 29641, - [SMALL_STATE(729)] = 29706, - [SMALL_STATE(730)] = 29771, - [SMALL_STATE(731)] = 29836, - [SMALL_STATE(732)] = 29901, - [SMALL_STATE(733)] = 29966, - [SMALL_STATE(734)] = 30031, - [SMALL_STATE(735)] = 30096, - [SMALL_STATE(736)] = 30161, - [SMALL_STATE(737)] = 30226, - [SMALL_STATE(738)] = 30291, - [SMALL_STATE(739)] = 30356, - [SMALL_STATE(740)] = 30421, - [SMALL_STATE(741)] = 30486, - [SMALL_STATE(742)] = 30551, - [SMALL_STATE(743)] = 30616, - [SMALL_STATE(744)] = 30681, - [SMALL_STATE(745)] = 30746, - [SMALL_STATE(746)] = 30811, - [SMALL_STATE(747)] = 30876, - [SMALL_STATE(748)] = 30941, - [SMALL_STATE(749)] = 31006, - [SMALL_STATE(750)] = 31071, - [SMALL_STATE(751)] = 31136, - [SMALL_STATE(752)] = 31201, - [SMALL_STATE(753)] = 31266, - [SMALL_STATE(754)] = 31331, - [SMALL_STATE(755)] = 31396, - [SMALL_STATE(756)] = 31461, - [SMALL_STATE(757)] = 31526, - [SMALL_STATE(758)] = 31591, - [SMALL_STATE(759)] = 31656, - [SMALL_STATE(760)] = 31721, - [SMALL_STATE(761)] = 31786, - [SMALL_STATE(762)] = 31851, - [SMALL_STATE(763)] = 31916, - [SMALL_STATE(764)] = 31981, - [SMALL_STATE(765)] = 32046, - [SMALL_STATE(766)] = 32111, - [SMALL_STATE(767)] = 32176, - [SMALL_STATE(768)] = 32241, - [SMALL_STATE(769)] = 32306, - [SMALL_STATE(770)] = 32371, - [SMALL_STATE(771)] = 32436, - [SMALL_STATE(772)] = 32501, - [SMALL_STATE(773)] = 32566, - [SMALL_STATE(774)] = 32631, - [SMALL_STATE(775)] = 32696, - [SMALL_STATE(776)] = 32761, - [SMALL_STATE(777)] = 32826, - [SMALL_STATE(778)] = 32891, - [SMALL_STATE(779)] = 32956, - [SMALL_STATE(780)] = 33021, - [SMALL_STATE(781)] = 33086, - [SMALL_STATE(782)] = 33151, - [SMALL_STATE(783)] = 33216, - [SMALL_STATE(784)] = 33281, - [SMALL_STATE(785)] = 33346, - [SMALL_STATE(786)] = 33411, - [SMALL_STATE(787)] = 33476, - [SMALL_STATE(788)] = 33541, - [SMALL_STATE(789)] = 33606, - [SMALL_STATE(790)] = 33671, - [SMALL_STATE(791)] = 33736, - [SMALL_STATE(792)] = 33801, - [SMALL_STATE(793)] = 33866, - [SMALL_STATE(794)] = 33931, - [SMALL_STATE(795)] = 33996, - [SMALL_STATE(796)] = 34061, - [SMALL_STATE(797)] = 34126, - [SMALL_STATE(798)] = 34191, - [SMALL_STATE(799)] = 34256, - [SMALL_STATE(800)] = 34321, - [SMALL_STATE(801)] = 34386, - [SMALL_STATE(802)] = 34451, - [SMALL_STATE(803)] = 34516, - [SMALL_STATE(804)] = 34581, - [SMALL_STATE(805)] = 34646, - [SMALL_STATE(806)] = 34711, - [SMALL_STATE(807)] = 34776, - [SMALL_STATE(808)] = 34841, - [SMALL_STATE(809)] = 34906, - [SMALL_STATE(810)] = 34971, - [SMALL_STATE(811)] = 35036, - [SMALL_STATE(812)] = 35101, - [SMALL_STATE(813)] = 35166, - [SMALL_STATE(814)] = 35231, - [SMALL_STATE(815)] = 35296, - [SMALL_STATE(816)] = 35361, - [SMALL_STATE(817)] = 35426, - [SMALL_STATE(818)] = 35491, - [SMALL_STATE(819)] = 35556, - [SMALL_STATE(820)] = 35621, - [SMALL_STATE(821)] = 35686, - [SMALL_STATE(822)] = 35751, - [SMALL_STATE(823)] = 35816, - [SMALL_STATE(824)] = 35881, - [SMALL_STATE(825)] = 35946, - [SMALL_STATE(826)] = 36011, - [SMALL_STATE(827)] = 36076, - [SMALL_STATE(828)] = 36141, - [SMALL_STATE(829)] = 36206, - [SMALL_STATE(830)] = 36271, - [SMALL_STATE(831)] = 36336, - [SMALL_STATE(832)] = 36401, - [SMALL_STATE(833)] = 36466, - [SMALL_STATE(834)] = 36531, - [SMALL_STATE(835)] = 36596, - [SMALL_STATE(836)] = 36661, - [SMALL_STATE(837)] = 36726, - [SMALL_STATE(838)] = 36791, - [SMALL_STATE(839)] = 36856, - [SMALL_STATE(840)] = 36921, - [SMALL_STATE(841)] = 36986, - [SMALL_STATE(842)] = 37051, - [SMALL_STATE(843)] = 37116, - [SMALL_STATE(844)] = 37181, - [SMALL_STATE(845)] = 37246, - [SMALL_STATE(846)] = 37311, - [SMALL_STATE(847)] = 37376, - [SMALL_STATE(848)] = 37441, - [SMALL_STATE(849)] = 37506, - [SMALL_STATE(850)] = 37571, - [SMALL_STATE(851)] = 37636, - [SMALL_STATE(852)] = 37701, - [SMALL_STATE(853)] = 37766, - [SMALL_STATE(854)] = 37831, - [SMALL_STATE(855)] = 37896, - [SMALL_STATE(856)] = 37961, - [SMALL_STATE(857)] = 38026, - [SMALL_STATE(858)] = 38091, - [SMALL_STATE(859)] = 38156, - [SMALL_STATE(860)] = 38221, - [SMALL_STATE(861)] = 38286, - [SMALL_STATE(862)] = 38351, - [SMALL_STATE(863)] = 38416, - [SMALL_STATE(864)] = 38481, - [SMALL_STATE(865)] = 38546, - [SMALL_STATE(866)] = 38611, - [SMALL_STATE(867)] = 38676, - [SMALL_STATE(868)] = 38741, - [SMALL_STATE(869)] = 38806, - [SMALL_STATE(870)] = 38871, - [SMALL_STATE(871)] = 38936, - [SMALL_STATE(872)] = 39001, - [SMALL_STATE(873)] = 39066, - [SMALL_STATE(874)] = 39131, - [SMALL_STATE(875)] = 39196, - [SMALL_STATE(876)] = 39261, - [SMALL_STATE(877)] = 39326, - [SMALL_STATE(878)] = 39391, - [SMALL_STATE(879)] = 39456, - [SMALL_STATE(880)] = 39521, - [SMALL_STATE(881)] = 39586, - [SMALL_STATE(882)] = 39651, - [SMALL_STATE(883)] = 39716, - [SMALL_STATE(884)] = 39781, - [SMALL_STATE(885)] = 39846, - [SMALL_STATE(886)] = 39911, - [SMALL_STATE(887)] = 39976, - [SMALL_STATE(888)] = 40041, - [SMALL_STATE(889)] = 40106, - [SMALL_STATE(890)] = 40171, - [SMALL_STATE(891)] = 40236, - [SMALL_STATE(892)] = 40301, - [SMALL_STATE(893)] = 40366, - [SMALL_STATE(894)] = 40431, - [SMALL_STATE(895)] = 40496, - [SMALL_STATE(896)] = 40561, - [SMALL_STATE(897)] = 40626, - [SMALL_STATE(898)] = 40691, - [SMALL_STATE(899)] = 40756, - [SMALL_STATE(900)] = 40821, - [SMALL_STATE(901)] = 40886, - [SMALL_STATE(902)] = 40951, - [SMALL_STATE(903)] = 41016, - [SMALL_STATE(904)] = 41081, - [SMALL_STATE(905)] = 41146, - [SMALL_STATE(906)] = 41211, - [SMALL_STATE(907)] = 41276, - [SMALL_STATE(908)] = 41341, - [SMALL_STATE(909)] = 41406, - [SMALL_STATE(910)] = 41471, - [SMALL_STATE(911)] = 41536, - [SMALL_STATE(912)] = 41601, - [SMALL_STATE(913)] = 41663, - [SMALL_STATE(914)] = 41725, - [SMALL_STATE(915)] = 41787, - [SMALL_STATE(916)] = 41849, - [SMALL_STATE(917)] = 41911, - [SMALL_STATE(918)] = 41973, - [SMALL_STATE(919)] = 42035, - [SMALL_STATE(920)] = 42097, - [SMALL_STATE(921)] = 42159, - [SMALL_STATE(922)] = 42221, - [SMALL_STATE(923)] = 42283, - [SMALL_STATE(924)] = 42345, - [SMALL_STATE(925)] = 42407, - [SMALL_STATE(926)] = 42469, - [SMALL_STATE(927)] = 42531, - [SMALL_STATE(928)] = 42593, - [SMALL_STATE(929)] = 42655, - [SMALL_STATE(930)] = 42717, - [SMALL_STATE(931)] = 42779, - [SMALL_STATE(932)] = 42841, - [SMALL_STATE(933)] = 42903, - [SMALL_STATE(934)] = 42965, - [SMALL_STATE(935)] = 43027, - [SMALL_STATE(936)] = 43089, - [SMALL_STATE(937)] = 43151, - [SMALL_STATE(938)] = 43213, - [SMALL_STATE(939)] = 43275, - [SMALL_STATE(940)] = 43337, - [SMALL_STATE(941)] = 43399, - [SMALL_STATE(942)] = 43461, - [SMALL_STATE(943)] = 43523, - [SMALL_STATE(944)] = 43585, - [SMALL_STATE(945)] = 43647, - [SMALL_STATE(946)] = 43709, - [SMALL_STATE(947)] = 43771, - [SMALL_STATE(948)] = 43833, - [SMALL_STATE(949)] = 43895, - [SMALL_STATE(950)] = 43957, - [SMALL_STATE(951)] = 44019, - [SMALL_STATE(952)] = 44081, - [SMALL_STATE(953)] = 44143, - [SMALL_STATE(954)] = 44205, - [SMALL_STATE(955)] = 44267, - [SMALL_STATE(956)] = 44329, - [SMALL_STATE(957)] = 44391, - [SMALL_STATE(958)] = 44453, - [SMALL_STATE(959)] = 44515, - [SMALL_STATE(960)] = 44577, - [SMALL_STATE(961)] = 44639, - [SMALL_STATE(962)] = 44701, - [SMALL_STATE(963)] = 44763, - [SMALL_STATE(964)] = 44825, - [SMALL_STATE(965)] = 44887, - [SMALL_STATE(966)] = 44949, - [SMALL_STATE(967)] = 45011, - [SMALL_STATE(968)] = 45073, - [SMALL_STATE(969)] = 45135, - [SMALL_STATE(970)] = 45197, - [SMALL_STATE(971)] = 45259, - [SMALL_STATE(972)] = 45321, - [SMALL_STATE(973)] = 45383, - [SMALL_STATE(974)] = 45445, - [SMALL_STATE(975)] = 45507, - [SMALL_STATE(976)] = 45569, - [SMALL_STATE(977)] = 45631, - [SMALL_STATE(978)] = 45693, - [SMALL_STATE(979)] = 45755, - [SMALL_STATE(980)] = 45817, - [SMALL_STATE(981)] = 45879, - [SMALL_STATE(982)] = 45941, - [SMALL_STATE(983)] = 46003, - [SMALL_STATE(984)] = 46065, - [SMALL_STATE(985)] = 46127, - [SMALL_STATE(986)] = 46189, - [SMALL_STATE(987)] = 46251, - [SMALL_STATE(988)] = 46313, - [SMALL_STATE(989)] = 46375, - [SMALL_STATE(990)] = 46437, - [SMALL_STATE(991)] = 46499, - [SMALL_STATE(992)] = 46561, - [SMALL_STATE(993)] = 46623, - [SMALL_STATE(994)] = 46685, - [SMALL_STATE(995)] = 46747, - [SMALL_STATE(996)] = 46809, - [SMALL_STATE(997)] = 46871, - [SMALL_STATE(998)] = 46933, - [SMALL_STATE(999)] = 46995, - [SMALL_STATE(1000)] = 47057, - [SMALL_STATE(1001)] = 47119, - [SMALL_STATE(1002)] = 47181, - [SMALL_STATE(1003)] = 47243, - [SMALL_STATE(1004)] = 47305, - [SMALL_STATE(1005)] = 47367, - [SMALL_STATE(1006)] = 47429, - [SMALL_STATE(1007)] = 47491, - [SMALL_STATE(1008)] = 47553, - [SMALL_STATE(1009)] = 47615, - [SMALL_STATE(1010)] = 47677, - [SMALL_STATE(1011)] = 47739, - [SMALL_STATE(1012)] = 47801, - [SMALL_STATE(1013)] = 47863, - [SMALL_STATE(1014)] = 47925, - [SMALL_STATE(1015)] = 47987, - [SMALL_STATE(1016)] = 48049, - [SMALL_STATE(1017)] = 48111, - [SMALL_STATE(1018)] = 48173, - [SMALL_STATE(1019)] = 48235, - [SMALL_STATE(1020)] = 48297, - [SMALL_STATE(1021)] = 48359, - [SMALL_STATE(1022)] = 48421, - [SMALL_STATE(1023)] = 48483, - [SMALL_STATE(1024)] = 48545, - [SMALL_STATE(1025)] = 48607, - [SMALL_STATE(1026)] = 48669, - [SMALL_STATE(1027)] = 48731, - [SMALL_STATE(1028)] = 48793, - [SMALL_STATE(1029)] = 48855, - [SMALL_STATE(1030)] = 48917, - [SMALL_STATE(1031)] = 48979, - [SMALL_STATE(1032)] = 49041, - [SMALL_STATE(1033)] = 49103, - [SMALL_STATE(1034)] = 49165, - [SMALL_STATE(1035)] = 49227, - [SMALL_STATE(1036)] = 49289, - [SMALL_STATE(1037)] = 49351, - [SMALL_STATE(1038)] = 49413, - [SMALL_STATE(1039)] = 49475, - [SMALL_STATE(1040)] = 49537, - [SMALL_STATE(1041)] = 49599, - [SMALL_STATE(1042)] = 49661, - [SMALL_STATE(1043)] = 49723, - [SMALL_STATE(1044)] = 49785, - [SMALL_STATE(1045)] = 49847, - [SMALL_STATE(1046)] = 49909, - [SMALL_STATE(1047)] = 49971, - [SMALL_STATE(1048)] = 50033, - [SMALL_STATE(1049)] = 50095, - [SMALL_STATE(1050)] = 50157, - [SMALL_STATE(1051)] = 50219, - [SMALL_STATE(1052)] = 50281, - [SMALL_STATE(1053)] = 50343, - [SMALL_STATE(1054)] = 50405, - [SMALL_STATE(1055)] = 50467, - [SMALL_STATE(1056)] = 50529, - [SMALL_STATE(1057)] = 50591, - [SMALL_STATE(1058)] = 50653, - [SMALL_STATE(1059)] = 50715, - [SMALL_STATE(1060)] = 50777, - [SMALL_STATE(1061)] = 50839, - [SMALL_STATE(1062)] = 50901, - [SMALL_STATE(1063)] = 50963, - [SMALL_STATE(1064)] = 51025, - [SMALL_STATE(1065)] = 51087, - [SMALL_STATE(1066)] = 51149, - [SMALL_STATE(1067)] = 51211, - [SMALL_STATE(1068)] = 51273, - [SMALL_STATE(1069)] = 51335, - [SMALL_STATE(1070)] = 51397, - [SMALL_STATE(1071)] = 51459, - [SMALL_STATE(1072)] = 51521, - [SMALL_STATE(1073)] = 51583, - [SMALL_STATE(1074)] = 51645, - [SMALL_STATE(1075)] = 51707, - [SMALL_STATE(1076)] = 51769, - [SMALL_STATE(1077)] = 51831, - [SMALL_STATE(1078)] = 51893, - [SMALL_STATE(1079)] = 51955, - [SMALL_STATE(1080)] = 52017, - [SMALL_STATE(1081)] = 52079, - [SMALL_STATE(1082)] = 52141, - [SMALL_STATE(1083)] = 52203, - [SMALL_STATE(1084)] = 52265, - [SMALL_STATE(1085)] = 52327, - [SMALL_STATE(1086)] = 52389, - [SMALL_STATE(1087)] = 52451, - [SMALL_STATE(1088)] = 52513, - [SMALL_STATE(1089)] = 52575, - [SMALL_STATE(1090)] = 52637, - [SMALL_STATE(1091)] = 52699, - [SMALL_STATE(1092)] = 52761, - [SMALL_STATE(1093)] = 52823, - [SMALL_STATE(1094)] = 52885, - [SMALL_STATE(1095)] = 52947, - [SMALL_STATE(1096)] = 53009, - [SMALL_STATE(1097)] = 53071, - [SMALL_STATE(1098)] = 53133, - [SMALL_STATE(1099)] = 53195, - [SMALL_STATE(1100)] = 53257, - [SMALL_STATE(1101)] = 53319, - [SMALL_STATE(1102)] = 53381, - [SMALL_STATE(1103)] = 53443, - [SMALL_STATE(1104)] = 53505, - [SMALL_STATE(1105)] = 53567, - [SMALL_STATE(1106)] = 53629, - [SMALL_STATE(1107)] = 53691, - [SMALL_STATE(1108)] = 53753, - [SMALL_STATE(1109)] = 53815, - [SMALL_STATE(1110)] = 53877, - [SMALL_STATE(1111)] = 53939, - [SMALL_STATE(1112)] = 54001, - [SMALL_STATE(1113)] = 54063, - [SMALL_STATE(1114)] = 54125, - [SMALL_STATE(1115)] = 54187, - [SMALL_STATE(1116)] = 54249, - [SMALL_STATE(1117)] = 54311, - [SMALL_STATE(1118)] = 54373, - [SMALL_STATE(1119)] = 54435, - [SMALL_STATE(1120)] = 54497, - [SMALL_STATE(1121)] = 54559, - [SMALL_STATE(1122)] = 54621, - [SMALL_STATE(1123)] = 54683, - [SMALL_STATE(1124)] = 54745, - [SMALL_STATE(1125)] = 54807, - [SMALL_STATE(1126)] = 54869, - [SMALL_STATE(1127)] = 54931, - [SMALL_STATE(1128)] = 54993, - [SMALL_STATE(1129)] = 55055, - [SMALL_STATE(1130)] = 55117, - [SMALL_STATE(1131)] = 55179, - [SMALL_STATE(1132)] = 55241, - [SMALL_STATE(1133)] = 55303, - [SMALL_STATE(1134)] = 55365, - [SMALL_STATE(1135)] = 55427, - [SMALL_STATE(1136)] = 55489, - [SMALL_STATE(1137)] = 55551, - [SMALL_STATE(1138)] = 55613, - [SMALL_STATE(1139)] = 55675, - [SMALL_STATE(1140)] = 55737, - [SMALL_STATE(1141)] = 55799, - [SMALL_STATE(1142)] = 55861, - [SMALL_STATE(1143)] = 55923, - [SMALL_STATE(1144)] = 55985, - [SMALL_STATE(1145)] = 56047, - [SMALL_STATE(1146)] = 56109, - [SMALL_STATE(1147)] = 56171, - [SMALL_STATE(1148)] = 56233, - [SMALL_STATE(1149)] = 56295, - [SMALL_STATE(1150)] = 56357, - [SMALL_STATE(1151)] = 56419, - [SMALL_STATE(1152)] = 56481, - [SMALL_STATE(1153)] = 56543, - [SMALL_STATE(1154)] = 56605, - [SMALL_STATE(1155)] = 56667, - [SMALL_STATE(1156)] = 56729, - [SMALL_STATE(1157)] = 56791, - [SMALL_STATE(1158)] = 56853, - [SMALL_STATE(1159)] = 56915, - [SMALL_STATE(1160)] = 56977, - [SMALL_STATE(1161)] = 57039, - [SMALL_STATE(1162)] = 57101, - [SMALL_STATE(1163)] = 57163, - [SMALL_STATE(1164)] = 57225, - [SMALL_STATE(1165)] = 57287, - [SMALL_STATE(1166)] = 57349, - [SMALL_STATE(1167)] = 57411, - [SMALL_STATE(1168)] = 57473, - [SMALL_STATE(1169)] = 57535, - [SMALL_STATE(1170)] = 57597, - [SMALL_STATE(1171)] = 57659, - [SMALL_STATE(1172)] = 57721, - [SMALL_STATE(1173)] = 57783, - [SMALL_STATE(1174)] = 57845, - [SMALL_STATE(1175)] = 57907, - [SMALL_STATE(1176)] = 57969, - [SMALL_STATE(1177)] = 58031, - [SMALL_STATE(1178)] = 58093, - [SMALL_STATE(1179)] = 58155, - [SMALL_STATE(1180)] = 58217, - [SMALL_STATE(1181)] = 58279, - [SMALL_STATE(1182)] = 58341, - [SMALL_STATE(1183)] = 58403, - [SMALL_STATE(1184)] = 58465, - [SMALL_STATE(1185)] = 58527, - [SMALL_STATE(1186)] = 58589, - [SMALL_STATE(1187)] = 58651, - [SMALL_STATE(1188)] = 58713, - [SMALL_STATE(1189)] = 58775, - [SMALL_STATE(1190)] = 58837, - [SMALL_STATE(1191)] = 58899, - [SMALL_STATE(1192)] = 58961, - [SMALL_STATE(1193)] = 59023, - [SMALL_STATE(1194)] = 59085, - [SMALL_STATE(1195)] = 59147, - [SMALL_STATE(1196)] = 59209, - [SMALL_STATE(1197)] = 59271, - [SMALL_STATE(1198)] = 59333, - [SMALL_STATE(1199)] = 59395, - [SMALL_STATE(1200)] = 59457, - [SMALL_STATE(1201)] = 59519, - [SMALL_STATE(1202)] = 59581, - [SMALL_STATE(1203)] = 59643, - [SMALL_STATE(1204)] = 59705, - [SMALL_STATE(1205)] = 59767, - [SMALL_STATE(1206)] = 59829, - [SMALL_STATE(1207)] = 59891, - [SMALL_STATE(1208)] = 59953, - [SMALL_STATE(1209)] = 60015, - [SMALL_STATE(1210)] = 60077, - [SMALL_STATE(1211)] = 60139, - [SMALL_STATE(1212)] = 60201, - [SMALL_STATE(1213)] = 60263, - [SMALL_STATE(1214)] = 60325, - [SMALL_STATE(1215)] = 60387, - [SMALL_STATE(1216)] = 60449, - [SMALL_STATE(1217)] = 60511, - [SMALL_STATE(1218)] = 60573, - [SMALL_STATE(1219)] = 60635, - [SMALL_STATE(1220)] = 60697, - [SMALL_STATE(1221)] = 60759, - [SMALL_STATE(1222)] = 60821, - [SMALL_STATE(1223)] = 60883, - [SMALL_STATE(1224)] = 60945, - [SMALL_STATE(1225)] = 61007, - [SMALL_STATE(1226)] = 61069, - [SMALL_STATE(1227)] = 61131, - [SMALL_STATE(1228)] = 61193, - [SMALL_STATE(1229)] = 61255, - [SMALL_STATE(1230)] = 61317, - [SMALL_STATE(1231)] = 61379, - [SMALL_STATE(1232)] = 61441, - [SMALL_STATE(1233)] = 61503, - [SMALL_STATE(1234)] = 61565, - [SMALL_STATE(1235)] = 61627, - [SMALL_STATE(1236)] = 61689, - [SMALL_STATE(1237)] = 61751, - [SMALL_STATE(1238)] = 61813, - [SMALL_STATE(1239)] = 61875, - [SMALL_STATE(1240)] = 61937, - [SMALL_STATE(1241)] = 61999, - [SMALL_STATE(1242)] = 62061, - [SMALL_STATE(1243)] = 62123, - [SMALL_STATE(1244)] = 62185, - [SMALL_STATE(1245)] = 62247, - [SMALL_STATE(1246)] = 62309, - [SMALL_STATE(1247)] = 62371, - [SMALL_STATE(1248)] = 62433, - [SMALL_STATE(1249)] = 62495, - [SMALL_STATE(1250)] = 62557, - [SMALL_STATE(1251)] = 62619, - [SMALL_STATE(1252)] = 62681, - [SMALL_STATE(1253)] = 62743, - [SMALL_STATE(1254)] = 62805, - [SMALL_STATE(1255)] = 62867, - [SMALL_STATE(1256)] = 62929, - [SMALL_STATE(1257)] = 62991, - [SMALL_STATE(1258)] = 63053, - [SMALL_STATE(1259)] = 63115, - [SMALL_STATE(1260)] = 63177, - [SMALL_STATE(1261)] = 63239, - [SMALL_STATE(1262)] = 63301, - [SMALL_STATE(1263)] = 63363, - [SMALL_STATE(1264)] = 63425, - [SMALL_STATE(1265)] = 63487, - [SMALL_STATE(1266)] = 63549, - [SMALL_STATE(1267)] = 63611, - [SMALL_STATE(1268)] = 63673, - [SMALL_STATE(1269)] = 63735, - [SMALL_STATE(1270)] = 63797, - [SMALL_STATE(1271)] = 63859, - [SMALL_STATE(1272)] = 63921, - [SMALL_STATE(1273)] = 63983, - [SMALL_STATE(1274)] = 64045, - [SMALL_STATE(1275)] = 64107, - [SMALL_STATE(1276)] = 64169, - [SMALL_STATE(1277)] = 64231, - [SMALL_STATE(1278)] = 64293, - [SMALL_STATE(1279)] = 64355, - [SMALL_STATE(1280)] = 64417, - [SMALL_STATE(1281)] = 64479, - [SMALL_STATE(1282)] = 64541, - [SMALL_STATE(1283)] = 64603, - [SMALL_STATE(1284)] = 64665, - [SMALL_STATE(1285)] = 64727, - [SMALL_STATE(1286)] = 64789, - [SMALL_STATE(1287)] = 64851, - [SMALL_STATE(1288)] = 64913, - [SMALL_STATE(1289)] = 64975, - [SMALL_STATE(1290)] = 65037, - [SMALL_STATE(1291)] = 65099, - [SMALL_STATE(1292)] = 65161, - [SMALL_STATE(1293)] = 65223, - [SMALL_STATE(1294)] = 65285, - [SMALL_STATE(1295)] = 65347, - [SMALL_STATE(1296)] = 65409, - [SMALL_STATE(1297)] = 65471, - [SMALL_STATE(1298)] = 65533, - [SMALL_STATE(1299)] = 65595, - [SMALL_STATE(1300)] = 65657, - [SMALL_STATE(1301)] = 65719, - [SMALL_STATE(1302)] = 65781, - [SMALL_STATE(1303)] = 65843, - [SMALL_STATE(1304)] = 65905, - [SMALL_STATE(1305)] = 65967, - [SMALL_STATE(1306)] = 66029, - [SMALL_STATE(1307)] = 66091, - [SMALL_STATE(1308)] = 66138, - [SMALL_STATE(1309)] = 66174, - [SMALL_STATE(1310)] = 66218, - [SMALL_STATE(1311)] = 66262, - [SMALL_STATE(1312)] = 66311, - [SMALL_STATE(1313)] = 66346, - [SMALL_STATE(1314)] = 66383, - [SMALL_STATE(1315)] = 66432, - [SMALL_STATE(1316)] = 66469, - [SMALL_STATE(1317)] = 66506, - [SMALL_STATE(1318)] = 66549, - [SMALL_STATE(1319)] = 66598, - [SMALL_STATE(1320)] = 66635, - [SMALL_STATE(1321)] = 66672, - [SMALL_STATE(1322)] = 66709, - [SMALL_STATE(1323)] = 66752, - [SMALL_STATE(1324)] = 66789, - [SMALL_STATE(1325)] = 66826, - [SMALL_STATE(1326)] = 66861, - [SMALL_STATE(1327)] = 66910, - [SMALL_STATE(1328)] = 66959, + [SMALL_STATE(278)] = 9143, + [SMALL_STATE(279)] = 9186, + [SMALL_STATE(280)] = 9229, + [SMALL_STATE(281)] = 9272, + [SMALL_STATE(282)] = 9315, + [SMALL_STATE(283)] = 9358, + [SMALL_STATE(284)] = 9401, + [SMALL_STATE(285)] = 9444, + [SMALL_STATE(286)] = 9487, + [SMALL_STATE(287)] = 9530, + [SMALL_STATE(288)] = 9573, + [SMALL_STATE(289)] = 9616, + [SMALL_STATE(290)] = 9659, + [SMALL_STATE(291)] = 9702, + [SMALL_STATE(292)] = 9745, + [SMALL_STATE(293)] = 9788, + [SMALL_STATE(294)] = 9831, + [SMALL_STATE(295)] = 9874, + [SMALL_STATE(296)] = 9917, + [SMALL_STATE(297)] = 9960, + [SMALL_STATE(298)] = 10003, + [SMALL_STATE(299)] = 10046, + [SMALL_STATE(300)] = 10089, + [SMALL_STATE(301)] = 10132, + [SMALL_STATE(302)] = 10175, + [SMALL_STATE(303)] = 10218, + [SMALL_STATE(304)] = 10261, + [SMALL_STATE(305)] = 10304, + [SMALL_STATE(306)] = 10347, + [SMALL_STATE(307)] = 10390, + [SMALL_STATE(308)] = 10433, + [SMALL_STATE(309)] = 10476, + [SMALL_STATE(310)] = 10519, + [SMALL_STATE(311)] = 10572, + [SMALL_STATE(312)] = 10619, + [SMALL_STATE(313)] = 10666, + [SMALL_STATE(314)] = 10709, + [SMALL_STATE(315)] = 10756, + [SMALL_STATE(316)] = 10803, + [SMALL_STATE(317)] = 10850, + [SMALL_STATE(318)] = 10893, + [SMALL_STATE(319)] = 10936, + [SMALL_STATE(320)] = 10983, + [SMALL_STATE(321)] = 11026, + [SMALL_STATE(322)] = 11073, + [SMALL_STATE(323)] = 11116, + [SMALL_STATE(324)] = 11163, + [SMALL_STATE(325)] = 11206, + [SMALL_STATE(326)] = 11249, + [SMALL_STATE(327)] = 11292, + [SMALL_STATE(328)] = 11335, + [SMALL_STATE(329)] = 11378, + [SMALL_STATE(330)] = 11421, + [SMALL_STATE(331)] = 11464, + [SMALL_STATE(332)] = 11507, + [SMALL_STATE(333)] = 11550, + [SMALL_STATE(334)] = 11593, + [SMALL_STATE(335)] = 11640, + [SMALL_STATE(336)] = 11683, + [SMALL_STATE(337)] = 11726, + [SMALL_STATE(338)] = 11769, + [SMALL_STATE(339)] = 11812, + [SMALL_STATE(340)] = 11859, + [SMALL_STATE(341)] = 11906, + [SMALL_STATE(342)] = 11949, + [SMALL_STATE(343)] = 11992, + [SMALL_STATE(344)] = 12035, + [SMALL_STATE(345)] = 12082, + [SMALL_STATE(346)] = 12125, + [SMALL_STATE(347)] = 12168, + [SMALL_STATE(348)] = 12211, + [SMALL_STATE(349)] = 12254, + [SMALL_STATE(350)] = 12301, + [SMALL_STATE(351)] = 12344, + [SMALL_STATE(352)] = 12387, + [SMALL_STATE(353)] = 12430, + [SMALL_STATE(354)] = 12473, + [SMALL_STATE(355)] = 12516, + [SMALL_STATE(356)] = 12559, + [SMALL_STATE(357)] = 12602, + [SMALL_STATE(358)] = 12645, + [SMALL_STATE(359)] = 12688, + [SMALL_STATE(360)] = 12731, + [SMALL_STATE(361)] = 12774, + [SMALL_STATE(362)] = 12817, + [SMALL_STATE(363)] = 12860, + [SMALL_STATE(364)] = 12903, + [SMALL_STATE(365)] = 12946, + [SMALL_STATE(366)] = 12989, + [SMALL_STATE(367)] = 13032, + [SMALL_STATE(368)] = 13075, + [SMALL_STATE(369)] = 13122, + [SMALL_STATE(370)] = 13169, + [SMALL_STATE(371)] = 13212, + [SMALL_STATE(372)] = 13255, + [SMALL_STATE(373)] = 13298, + [SMALL_STATE(374)] = 13341, + [SMALL_STATE(375)] = 13388, + [SMALL_STATE(376)] = 13435, + [SMALL_STATE(377)] = 13478, + [SMALL_STATE(378)] = 13521, + [SMALL_STATE(379)] = 13564, + [SMALL_STATE(380)] = 13607, + [SMALL_STATE(381)] = 13650, + [SMALL_STATE(382)] = 13693, + [SMALL_STATE(383)] = 13736, + [SMALL_STATE(384)] = 13783, + [SMALL_STATE(385)] = 13826, + [SMALL_STATE(386)] = 13869, + [SMALL_STATE(387)] = 13912, + [SMALL_STATE(388)] = 13955, + [SMALL_STATE(389)] = 13998, + [SMALL_STATE(390)] = 14041, + [SMALL_STATE(391)] = 14084, + [SMALL_STATE(392)] = 14127, + [SMALL_STATE(393)] = 14170, + [SMALL_STATE(394)] = 14213, + [SMALL_STATE(395)] = 14256, + [SMALL_STATE(396)] = 14299, + [SMALL_STATE(397)] = 14342, + [SMALL_STATE(398)] = 14385, + [SMALL_STATE(399)] = 14428, + [SMALL_STATE(400)] = 14471, + [SMALL_STATE(401)] = 14514, + [SMALL_STATE(402)] = 14557, + [SMALL_STATE(403)] = 14604, + [SMALL_STATE(404)] = 14647, + [SMALL_STATE(405)] = 14694, + [SMALL_STATE(406)] = 14741, + [SMALL_STATE(407)] = 14784, + [SMALL_STATE(408)] = 14827, + [SMALL_STATE(409)] = 14870, + [SMALL_STATE(410)] = 14913, + [SMALL_STATE(411)] = 14956, + [SMALL_STATE(412)] = 14999, + [SMALL_STATE(413)] = 15042, + [SMALL_STATE(414)] = 15085, + [SMALL_STATE(415)] = 15128, + [SMALL_STATE(416)] = 15171, + [SMALL_STATE(417)] = 15214, + [SMALL_STATE(418)] = 15257, + [SMALL_STATE(419)] = 15304, + [SMALL_STATE(420)] = 15347, + [SMALL_STATE(421)] = 15390, + [SMALL_STATE(422)] = 15433, + [SMALL_STATE(423)] = 15476, + [SMALL_STATE(424)] = 15519, + [SMALL_STATE(425)] = 15566, + [SMALL_STATE(426)] = 15613, + [SMALL_STATE(427)] = 15660, + [SMALL_STATE(428)] = 15703, + [SMALL_STATE(429)] = 15746, + [SMALL_STATE(430)] = 15793, + [SMALL_STATE(431)] = 15836, + [SMALL_STATE(432)] = 15879, + [SMALL_STATE(433)] = 15922, + [SMALL_STATE(434)] = 15969, + [SMALL_STATE(435)] = 16012, + [SMALL_STATE(436)] = 16059, + [SMALL_STATE(437)] = 16102, + [SMALL_STATE(438)] = 16145, + [SMALL_STATE(439)] = 16192, + [SMALL_STATE(440)] = 16235, + [SMALL_STATE(441)] = 16278, + [SMALL_STATE(442)] = 16321, + [SMALL_STATE(443)] = 16364, + [SMALL_STATE(444)] = 16407, + [SMALL_STATE(445)] = 16450, + [SMALL_STATE(446)] = 16493, + [SMALL_STATE(447)] = 16540, + [SMALL_STATE(448)] = 16587, + [SMALL_STATE(449)] = 16634, + [SMALL_STATE(450)] = 16681, + [SMALL_STATE(451)] = 16724, + [SMALL_STATE(452)] = 16767, + [SMALL_STATE(453)] = 16810, + [SMALL_STATE(454)] = 16857, + [SMALL_STATE(455)] = 16900, + [SMALL_STATE(456)] = 16947, + [SMALL_STATE(457)] = 16990, + [SMALL_STATE(458)] = 17037, + [SMALL_STATE(459)] = 17080, + [SMALL_STATE(460)] = 17123, + [SMALL_STATE(461)] = 17170, + [SMALL_STATE(462)] = 17213, + [SMALL_STATE(463)] = 17260, + [SMALL_STATE(464)] = 17303, + [SMALL_STATE(465)] = 17346, + [SMALL_STATE(466)] = 17389, + [SMALL_STATE(467)] = 17432, + [SMALL_STATE(468)] = 17475, + [SMALL_STATE(469)] = 17518, + [SMALL_STATE(470)] = 17561, + [SMALL_STATE(471)] = 17604, + [SMALL_STATE(472)] = 17651, + [SMALL_STATE(473)] = 17698, + [SMALL_STATE(474)] = 17745, + [SMALL_STATE(475)] = 17792, + [SMALL_STATE(476)] = 17835, + [SMALL_STATE(477)] = 17882, + [SMALL_STATE(478)] = 17929, + [SMALL_STATE(479)] = 17976, + [SMALL_STATE(480)] = 18018, + [SMALL_STATE(481)] = 18064, + [SMALL_STATE(482)] = 18106, + [SMALL_STATE(483)] = 18148, + [SMALL_STATE(484)] = 18190, + [SMALL_STATE(485)] = 18232, + [SMALL_STATE(486)] = 18274, + [SMALL_STATE(487)] = 18316, + [SMALL_STATE(488)] = 18358, + [SMALL_STATE(489)] = 18400, + [SMALL_STATE(490)] = 18442, + [SMALL_STATE(491)] = 18484, + [SMALL_STATE(492)] = 18526, + [SMALL_STATE(493)] = 18568, + [SMALL_STATE(494)] = 18610, + [SMALL_STATE(495)] = 18652, + [SMALL_STATE(496)] = 18698, + [SMALL_STATE(497)] = 18744, + [SMALL_STATE(498)] = 18786, + [SMALL_STATE(499)] = 18828, + [SMALL_STATE(500)] = 18870, + [SMALL_STATE(501)] = 18912, + [SMALL_STATE(502)] = 18954, + [SMALL_STATE(503)] = 19006, + [SMALL_STATE(504)] = 19048, + [SMALL_STATE(505)] = 19090, + [SMALL_STATE(506)] = 19132, + [SMALL_STATE(507)] = 19174, + [SMALL_STATE(508)] = 19216, + [SMALL_STATE(509)] = 19258, + [SMALL_STATE(510)] = 19300, + [SMALL_STATE(511)] = 19342, + [SMALL_STATE(512)] = 19384, + [SMALL_STATE(513)] = 19426, + [SMALL_STATE(514)] = 19468, + [SMALL_STATE(515)] = 19510, + [SMALL_STATE(516)] = 19552, + [SMALL_STATE(517)] = 19594, + [SMALL_STATE(518)] = 19636, + [SMALL_STATE(519)] = 19678, + [SMALL_STATE(520)] = 19720, + [SMALL_STATE(521)] = 19762, + [SMALL_STATE(522)] = 19804, + [SMALL_STATE(523)] = 19850, + [SMALL_STATE(524)] = 19892, + [SMALL_STATE(525)] = 19934, + [SMALL_STATE(526)] = 19976, + [SMALL_STATE(527)] = 20018, + [SMALL_STATE(528)] = 20060, + [SMALL_STATE(529)] = 20102, + [SMALL_STATE(530)] = 20144, + [SMALL_STATE(531)] = 20196, + [SMALL_STATE(532)] = 20242, + [SMALL_STATE(533)] = 20284, + [SMALL_STATE(534)] = 20326, + [SMALL_STATE(535)] = 20368, + [SMALL_STATE(536)] = 20410, + [SMALL_STATE(537)] = 20452, + [SMALL_STATE(538)] = 20494, + [SMALL_STATE(539)] = 20536, + [SMALL_STATE(540)] = 20578, + [SMALL_STATE(541)] = 20620, + [SMALL_STATE(542)] = 20662, + [SMALL_STATE(543)] = 20704, + [SMALL_STATE(544)] = 20750, + [SMALL_STATE(545)] = 20792, + [SMALL_STATE(546)] = 20866, + [SMALL_STATE(547)] = 20908, + [SMALL_STATE(548)] = 20982, + [SMALL_STATE(549)] = 21024, + [SMALL_STATE(550)] = 21066, + [SMALL_STATE(551)] = 21108, + [SMALL_STATE(552)] = 21150, + [SMALL_STATE(553)] = 21192, + [SMALL_STATE(554)] = 21234, + [SMALL_STATE(555)] = 21276, + [SMALL_STATE(556)] = 21318, + [SMALL_STATE(557)] = 21360, + [SMALL_STATE(558)] = 21402, + [SMALL_STATE(559)] = 21444, + [SMALL_STATE(560)] = 21486, + [SMALL_STATE(561)] = 21528, + [SMALL_STATE(562)] = 21570, + [SMALL_STATE(563)] = 21612, + [SMALL_STATE(564)] = 21654, + [SMALL_STATE(565)] = 21696, + [SMALL_STATE(566)] = 21738, + [SMALL_STATE(567)] = 21780, + [SMALL_STATE(568)] = 21822, + [SMALL_STATE(569)] = 21864, + [SMALL_STATE(570)] = 21906, + [SMALL_STATE(571)] = 21948, + [SMALL_STATE(572)] = 22022, + [SMALL_STATE(573)] = 22064, + [SMALL_STATE(574)] = 22110, + [SMALL_STATE(575)] = 22152, + [SMALL_STATE(576)] = 22194, + [SMALL_STATE(577)] = 22240, + [SMALL_STATE(578)] = 22282, + [SMALL_STATE(579)] = 22324, + [SMALL_STATE(580)] = 22366, + [SMALL_STATE(581)] = 22408, + [SMALL_STATE(582)] = 22450, + [SMALL_STATE(583)] = 22492, + [SMALL_STATE(584)] = 22566, + [SMALL_STATE(585)] = 22612, + [SMALL_STATE(586)] = 22654, + [SMALL_STATE(587)] = 22696, + [SMALL_STATE(588)] = 22738, + [SMALL_STATE(589)] = 22780, + [SMALL_STATE(590)] = 22822, + [SMALL_STATE(591)] = 22864, + [SMALL_STATE(592)] = 22906, + [SMALL_STATE(593)] = 22952, + [SMALL_STATE(594)] = 22994, + [SMALL_STATE(595)] = 23036, + [SMALL_STATE(596)] = 23078, + [SMALL_STATE(597)] = 23120, + [SMALL_STATE(598)] = 23162, + [SMALL_STATE(599)] = 23204, + [SMALL_STATE(600)] = 23246, + [SMALL_STATE(601)] = 23288, + [SMALL_STATE(602)] = 23330, + [SMALL_STATE(603)] = 23372, + [SMALL_STATE(604)] = 23414, + [SMALL_STATE(605)] = 23456, + [SMALL_STATE(606)] = 23498, + [SMALL_STATE(607)] = 23540, + [SMALL_STATE(608)] = 23582, + [SMALL_STATE(609)] = 23624, + [SMALL_STATE(610)] = 23666, + [SMALL_STATE(611)] = 23708, + [SMALL_STATE(612)] = 23750, + [SMALL_STATE(613)] = 23792, + [SMALL_STATE(614)] = 23834, + [SMALL_STATE(615)] = 23876, + [SMALL_STATE(616)] = 23918, + [SMALL_STATE(617)] = 23960, + [SMALL_STATE(618)] = 24002, + [SMALL_STATE(619)] = 24044, + [SMALL_STATE(620)] = 24086, + [SMALL_STATE(621)] = 24128, + [SMALL_STATE(622)] = 24170, + [SMALL_STATE(623)] = 24212, + [SMALL_STATE(624)] = 24254, + [SMALL_STATE(625)] = 24296, + [SMALL_STATE(626)] = 24338, + [SMALL_STATE(627)] = 24380, + [SMALL_STATE(628)] = 24422, + [SMALL_STATE(629)] = 24464, + [SMALL_STATE(630)] = 24506, + [SMALL_STATE(631)] = 24548, + [SMALL_STATE(632)] = 24590, + [SMALL_STATE(633)] = 24632, + [SMALL_STATE(634)] = 24674, + [SMALL_STATE(635)] = 24716, + [SMALL_STATE(636)] = 24758, + [SMALL_STATE(637)] = 24800, + [SMALL_STATE(638)] = 24842, + [SMALL_STATE(639)] = 24888, + [SMALL_STATE(640)] = 24930, + [SMALL_STATE(641)] = 24972, + [SMALL_STATE(642)] = 25014, + [SMALL_STATE(643)] = 25056, + [SMALL_STATE(644)] = 25098, + [SMALL_STATE(645)] = 25140, + [SMALL_STATE(646)] = 25182, + [SMALL_STATE(647)] = 25224, + [SMALL_STATE(648)] = 25266, + [SMALL_STATE(649)] = 25308, + [SMALL_STATE(650)] = 25350, + [SMALL_STATE(651)] = 25392, + [SMALL_STATE(652)] = 25434, + [SMALL_STATE(653)] = 25476, + [SMALL_STATE(654)] = 25518, + [SMALL_STATE(655)] = 25560, + [SMALL_STATE(656)] = 25602, + [SMALL_STATE(657)] = 25644, + [SMALL_STATE(658)] = 25686, + [SMALL_STATE(659)] = 25728, + [SMALL_STATE(660)] = 25770, + [SMALL_STATE(661)] = 25812, + [SMALL_STATE(662)] = 25854, + [SMALL_STATE(663)] = 25896, + [SMALL_STATE(664)] = 25938, + [SMALL_STATE(665)] = 25980, + [SMALL_STATE(666)] = 26022, + [SMALL_STATE(667)] = 26064, + [SMALL_STATE(668)] = 26106, + [SMALL_STATE(669)] = 26148, + [SMALL_STATE(670)] = 26194, + [SMALL_STATE(671)] = 26236, + [SMALL_STATE(672)] = 26278, + [SMALL_STATE(673)] = 26320, + [SMALL_STATE(674)] = 26362, + [SMALL_STATE(675)] = 26404, + [SMALL_STATE(676)] = 26446, + [SMALL_STATE(677)] = 26488, + [SMALL_STATE(678)] = 26529, + [SMALL_STATE(679)] = 26570, + [SMALL_STATE(680)] = 26611, + [SMALL_STATE(681)] = 26652, + [SMALL_STATE(682)] = 26693, + [SMALL_STATE(683)] = 26734, + [SMALL_STATE(684)] = 26775, + [SMALL_STATE(685)] = 26816, + [SMALL_STATE(686)] = 26857, + [SMALL_STATE(687)] = 26898, + [SMALL_STATE(688)] = 26939, + [SMALL_STATE(689)] = 26980, + [SMALL_STATE(690)] = 27021, + [SMALL_STATE(691)] = 27062, + [SMALL_STATE(692)] = 27103, + [SMALL_STATE(693)] = 27152, + [SMALL_STATE(694)] = 27204, + [SMALL_STATE(695)] = 27268, + [SMALL_STATE(696)] = 27332, + [SMALL_STATE(697)] = 27396, + [SMALL_STATE(698)] = 27460, + [SMALL_STATE(699)] = 27514, + [SMALL_STATE(700)] = 27578, + [SMALL_STATE(701)] = 27642, + [SMALL_STATE(702)] = 27694, + [SMALL_STATE(703)] = 27746, + [SMALL_STATE(704)] = 27811, + [SMALL_STATE(705)] = 27876, + [SMALL_STATE(706)] = 27941, + [SMALL_STATE(707)] = 28006, + [SMALL_STATE(708)] = 28071, + [SMALL_STATE(709)] = 28136, + [SMALL_STATE(710)] = 28201, + [SMALL_STATE(711)] = 28266, + [SMALL_STATE(712)] = 28331, + [SMALL_STATE(713)] = 28396, + [SMALL_STATE(714)] = 28461, + [SMALL_STATE(715)] = 28526, + [SMALL_STATE(716)] = 28591, + [SMALL_STATE(717)] = 28656, + [SMALL_STATE(718)] = 28721, + [SMALL_STATE(719)] = 28786, + [SMALL_STATE(720)] = 28851, + [SMALL_STATE(721)] = 28916, + [SMALL_STATE(722)] = 28981, + [SMALL_STATE(723)] = 29046, + [SMALL_STATE(724)] = 29111, + [SMALL_STATE(725)] = 29176, + [SMALL_STATE(726)] = 29241, + [SMALL_STATE(727)] = 29306, + [SMALL_STATE(728)] = 29371, + [SMALL_STATE(729)] = 29436, + [SMALL_STATE(730)] = 29501, + [SMALL_STATE(731)] = 29566, + [SMALL_STATE(732)] = 29631, + [SMALL_STATE(733)] = 29696, + [SMALL_STATE(734)] = 29761, + [SMALL_STATE(735)] = 29826, + [SMALL_STATE(736)] = 29891, + [SMALL_STATE(737)] = 29956, + [SMALL_STATE(738)] = 30021, + [SMALL_STATE(739)] = 30086, + [SMALL_STATE(740)] = 30151, + [SMALL_STATE(741)] = 30216, + [SMALL_STATE(742)] = 30281, + [SMALL_STATE(743)] = 30346, + [SMALL_STATE(744)] = 30411, + [SMALL_STATE(745)] = 30476, + [SMALL_STATE(746)] = 30541, + [SMALL_STATE(747)] = 30606, + [SMALL_STATE(748)] = 30671, + [SMALL_STATE(749)] = 30736, + [SMALL_STATE(750)] = 30801, + [SMALL_STATE(751)] = 30866, + [SMALL_STATE(752)] = 30931, + [SMALL_STATE(753)] = 30996, + [SMALL_STATE(754)] = 31061, + [SMALL_STATE(755)] = 31126, + [SMALL_STATE(756)] = 31191, + [SMALL_STATE(757)] = 31256, + [SMALL_STATE(758)] = 31321, + [SMALL_STATE(759)] = 31386, + [SMALL_STATE(760)] = 31451, + [SMALL_STATE(761)] = 31516, + [SMALL_STATE(762)] = 31581, + [SMALL_STATE(763)] = 31646, + [SMALL_STATE(764)] = 31711, + [SMALL_STATE(765)] = 31776, + [SMALL_STATE(766)] = 31841, + [SMALL_STATE(767)] = 31906, + [SMALL_STATE(768)] = 31971, + [SMALL_STATE(769)] = 32036, + [SMALL_STATE(770)] = 32101, + [SMALL_STATE(771)] = 32166, + [SMALL_STATE(772)] = 32231, + [SMALL_STATE(773)] = 32296, + [SMALL_STATE(774)] = 32361, + [SMALL_STATE(775)] = 32426, + [SMALL_STATE(776)] = 32491, + [SMALL_STATE(777)] = 32556, + [SMALL_STATE(778)] = 32621, + [SMALL_STATE(779)] = 32686, + [SMALL_STATE(780)] = 32751, + [SMALL_STATE(781)] = 32816, + [SMALL_STATE(782)] = 32881, + [SMALL_STATE(783)] = 32946, + [SMALL_STATE(784)] = 33011, + [SMALL_STATE(785)] = 33076, + [SMALL_STATE(786)] = 33141, + [SMALL_STATE(787)] = 33206, + [SMALL_STATE(788)] = 33271, + [SMALL_STATE(789)] = 33336, + [SMALL_STATE(790)] = 33401, + [SMALL_STATE(791)] = 33466, + [SMALL_STATE(792)] = 33531, + [SMALL_STATE(793)] = 33596, + [SMALL_STATE(794)] = 33661, + [SMALL_STATE(795)] = 33726, + [SMALL_STATE(796)] = 33791, + [SMALL_STATE(797)] = 33856, + [SMALL_STATE(798)] = 33921, + [SMALL_STATE(799)] = 33986, + [SMALL_STATE(800)] = 34051, + [SMALL_STATE(801)] = 34116, + [SMALL_STATE(802)] = 34181, + [SMALL_STATE(803)] = 34246, + [SMALL_STATE(804)] = 34311, + [SMALL_STATE(805)] = 34376, + [SMALL_STATE(806)] = 34441, + [SMALL_STATE(807)] = 34506, + [SMALL_STATE(808)] = 34571, + [SMALL_STATE(809)] = 34636, + [SMALL_STATE(810)] = 34701, + [SMALL_STATE(811)] = 34766, + [SMALL_STATE(812)] = 34831, + [SMALL_STATE(813)] = 34896, + [SMALL_STATE(814)] = 34961, + [SMALL_STATE(815)] = 35026, + [SMALL_STATE(816)] = 35091, + [SMALL_STATE(817)] = 35156, + [SMALL_STATE(818)] = 35221, + [SMALL_STATE(819)] = 35286, + [SMALL_STATE(820)] = 35351, + [SMALL_STATE(821)] = 35416, + [SMALL_STATE(822)] = 35481, + [SMALL_STATE(823)] = 35546, + [SMALL_STATE(824)] = 35611, + [SMALL_STATE(825)] = 35676, + [SMALL_STATE(826)] = 35741, + [SMALL_STATE(827)] = 35806, + [SMALL_STATE(828)] = 35871, + [SMALL_STATE(829)] = 35936, + [SMALL_STATE(830)] = 36001, + [SMALL_STATE(831)] = 36066, + [SMALL_STATE(832)] = 36131, + [SMALL_STATE(833)] = 36196, + [SMALL_STATE(834)] = 36261, + [SMALL_STATE(835)] = 36326, + [SMALL_STATE(836)] = 36391, + [SMALL_STATE(837)] = 36456, + [SMALL_STATE(838)] = 36521, + [SMALL_STATE(839)] = 36586, + [SMALL_STATE(840)] = 36651, + [SMALL_STATE(841)] = 36716, + [SMALL_STATE(842)] = 36781, + [SMALL_STATE(843)] = 36846, + [SMALL_STATE(844)] = 36911, + [SMALL_STATE(845)] = 36976, + [SMALL_STATE(846)] = 37041, + [SMALL_STATE(847)] = 37106, + [SMALL_STATE(848)] = 37171, + [SMALL_STATE(849)] = 37236, + [SMALL_STATE(850)] = 37301, + [SMALL_STATE(851)] = 37366, + [SMALL_STATE(852)] = 37431, + [SMALL_STATE(853)] = 37496, + [SMALL_STATE(854)] = 37561, + [SMALL_STATE(855)] = 37626, + [SMALL_STATE(856)] = 37691, + [SMALL_STATE(857)] = 37756, + [SMALL_STATE(858)] = 37821, + [SMALL_STATE(859)] = 37886, + [SMALL_STATE(860)] = 37951, + [SMALL_STATE(861)] = 38016, + [SMALL_STATE(862)] = 38081, + [SMALL_STATE(863)] = 38146, + [SMALL_STATE(864)] = 38211, + [SMALL_STATE(865)] = 38276, + [SMALL_STATE(866)] = 38341, + [SMALL_STATE(867)] = 38406, + [SMALL_STATE(868)] = 38471, + [SMALL_STATE(869)] = 38536, + [SMALL_STATE(870)] = 38601, + [SMALL_STATE(871)] = 38666, + [SMALL_STATE(872)] = 38731, + [SMALL_STATE(873)] = 38796, + [SMALL_STATE(874)] = 38861, + [SMALL_STATE(875)] = 38926, + [SMALL_STATE(876)] = 38991, + [SMALL_STATE(877)] = 39056, + [SMALL_STATE(878)] = 39121, + [SMALL_STATE(879)] = 39186, + [SMALL_STATE(880)] = 39251, + [SMALL_STATE(881)] = 39316, + [SMALL_STATE(882)] = 39381, + [SMALL_STATE(883)] = 39446, + [SMALL_STATE(884)] = 39511, + [SMALL_STATE(885)] = 39576, + [SMALL_STATE(886)] = 39641, + [SMALL_STATE(887)] = 39706, + [SMALL_STATE(888)] = 39771, + [SMALL_STATE(889)] = 39836, + [SMALL_STATE(890)] = 39901, + [SMALL_STATE(891)] = 39966, + [SMALL_STATE(892)] = 40031, + [SMALL_STATE(893)] = 40096, + [SMALL_STATE(894)] = 40161, + [SMALL_STATE(895)] = 40226, + [SMALL_STATE(896)] = 40291, + [SMALL_STATE(897)] = 40356, + [SMALL_STATE(898)] = 40421, + [SMALL_STATE(899)] = 40486, + [SMALL_STATE(900)] = 40551, + [SMALL_STATE(901)] = 40616, + [SMALL_STATE(902)] = 40681, + [SMALL_STATE(903)] = 40746, + [SMALL_STATE(904)] = 40811, + [SMALL_STATE(905)] = 40876, + [SMALL_STATE(906)] = 40941, + [SMALL_STATE(907)] = 41006, + [SMALL_STATE(908)] = 41071, + [SMALL_STATE(909)] = 41136, + [SMALL_STATE(910)] = 41201, + [SMALL_STATE(911)] = 41266, + [SMALL_STATE(912)] = 41331, + [SMALL_STATE(913)] = 41396, + [SMALL_STATE(914)] = 41461, + [SMALL_STATE(915)] = 41526, + [SMALL_STATE(916)] = 41591, + [SMALL_STATE(917)] = 41656, + [SMALL_STATE(918)] = 41721, + [SMALL_STATE(919)] = 41786, + [SMALL_STATE(920)] = 41851, + [SMALL_STATE(921)] = 41916, + [SMALL_STATE(922)] = 41981, + [SMALL_STATE(923)] = 42046, + [SMALL_STATE(924)] = 42111, + [SMALL_STATE(925)] = 42173, + [SMALL_STATE(926)] = 42235, + [SMALL_STATE(927)] = 42297, + [SMALL_STATE(928)] = 42359, + [SMALL_STATE(929)] = 42421, + [SMALL_STATE(930)] = 42483, + [SMALL_STATE(931)] = 42545, + [SMALL_STATE(932)] = 42607, + [SMALL_STATE(933)] = 42669, + [SMALL_STATE(934)] = 42731, + [SMALL_STATE(935)] = 42793, + [SMALL_STATE(936)] = 42855, + [SMALL_STATE(937)] = 42917, + [SMALL_STATE(938)] = 42979, + [SMALL_STATE(939)] = 43041, + [SMALL_STATE(940)] = 43103, + [SMALL_STATE(941)] = 43165, + [SMALL_STATE(942)] = 43227, + [SMALL_STATE(943)] = 43289, + [SMALL_STATE(944)] = 43351, + [SMALL_STATE(945)] = 43413, + [SMALL_STATE(946)] = 43475, + [SMALL_STATE(947)] = 43537, + [SMALL_STATE(948)] = 43599, + [SMALL_STATE(949)] = 43661, + [SMALL_STATE(950)] = 43723, + [SMALL_STATE(951)] = 43785, + [SMALL_STATE(952)] = 43847, + [SMALL_STATE(953)] = 43909, + [SMALL_STATE(954)] = 43971, + [SMALL_STATE(955)] = 44033, + [SMALL_STATE(956)] = 44095, + [SMALL_STATE(957)] = 44157, + [SMALL_STATE(958)] = 44219, + [SMALL_STATE(959)] = 44281, + [SMALL_STATE(960)] = 44343, + [SMALL_STATE(961)] = 44405, + [SMALL_STATE(962)] = 44467, + [SMALL_STATE(963)] = 44529, + [SMALL_STATE(964)] = 44591, + [SMALL_STATE(965)] = 44653, + [SMALL_STATE(966)] = 44715, + [SMALL_STATE(967)] = 44777, + [SMALL_STATE(968)] = 44839, + [SMALL_STATE(969)] = 44901, + [SMALL_STATE(970)] = 44963, + [SMALL_STATE(971)] = 45025, + [SMALL_STATE(972)] = 45087, + [SMALL_STATE(973)] = 45149, + [SMALL_STATE(974)] = 45211, + [SMALL_STATE(975)] = 45273, + [SMALL_STATE(976)] = 45335, + [SMALL_STATE(977)] = 45397, + [SMALL_STATE(978)] = 45459, + [SMALL_STATE(979)] = 45521, + [SMALL_STATE(980)] = 45583, + [SMALL_STATE(981)] = 45645, + [SMALL_STATE(982)] = 45707, + [SMALL_STATE(983)] = 45769, + [SMALL_STATE(984)] = 45831, + [SMALL_STATE(985)] = 45893, + [SMALL_STATE(986)] = 45955, + [SMALL_STATE(987)] = 46017, + [SMALL_STATE(988)] = 46079, + [SMALL_STATE(989)] = 46141, + [SMALL_STATE(990)] = 46203, + [SMALL_STATE(991)] = 46265, + [SMALL_STATE(992)] = 46327, + [SMALL_STATE(993)] = 46389, + [SMALL_STATE(994)] = 46451, + [SMALL_STATE(995)] = 46513, + [SMALL_STATE(996)] = 46575, + [SMALL_STATE(997)] = 46637, + [SMALL_STATE(998)] = 46699, + [SMALL_STATE(999)] = 46761, + [SMALL_STATE(1000)] = 46823, + [SMALL_STATE(1001)] = 46885, + [SMALL_STATE(1002)] = 46947, + [SMALL_STATE(1003)] = 47009, + [SMALL_STATE(1004)] = 47071, + [SMALL_STATE(1005)] = 47133, + [SMALL_STATE(1006)] = 47195, + [SMALL_STATE(1007)] = 47257, + [SMALL_STATE(1008)] = 47319, + [SMALL_STATE(1009)] = 47381, + [SMALL_STATE(1010)] = 47443, + [SMALL_STATE(1011)] = 47505, + [SMALL_STATE(1012)] = 47567, + [SMALL_STATE(1013)] = 47629, + [SMALL_STATE(1014)] = 47691, + [SMALL_STATE(1015)] = 47753, + [SMALL_STATE(1016)] = 47815, + [SMALL_STATE(1017)] = 47877, + [SMALL_STATE(1018)] = 47939, + [SMALL_STATE(1019)] = 48001, + [SMALL_STATE(1020)] = 48063, + [SMALL_STATE(1021)] = 48125, + [SMALL_STATE(1022)] = 48187, + [SMALL_STATE(1023)] = 48249, + [SMALL_STATE(1024)] = 48311, + [SMALL_STATE(1025)] = 48373, + [SMALL_STATE(1026)] = 48435, + [SMALL_STATE(1027)] = 48497, + [SMALL_STATE(1028)] = 48559, + [SMALL_STATE(1029)] = 48621, + [SMALL_STATE(1030)] = 48683, + [SMALL_STATE(1031)] = 48745, + [SMALL_STATE(1032)] = 48807, + [SMALL_STATE(1033)] = 48869, + [SMALL_STATE(1034)] = 48931, + [SMALL_STATE(1035)] = 48993, + [SMALL_STATE(1036)] = 49055, + [SMALL_STATE(1037)] = 49117, + [SMALL_STATE(1038)] = 49179, + [SMALL_STATE(1039)] = 49241, + [SMALL_STATE(1040)] = 49303, + [SMALL_STATE(1041)] = 49365, + [SMALL_STATE(1042)] = 49427, + [SMALL_STATE(1043)] = 49489, + [SMALL_STATE(1044)] = 49551, + [SMALL_STATE(1045)] = 49613, + [SMALL_STATE(1046)] = 49675, + [SMALL_STATE(1047)] = 49737, + [SMALL_STATE(1048)] = 49799, + [SMALL_STATE(1049)] = 49861, + [SMALL_STATE(1050)] = 49923, + [SMALL_STATE(1051)] = 49985, + [SMALL_STATE(1052)] = 50047, + [SMALL_STATE(1053)] = 50109, + [SMALL_STATE(1054)] = 50171, + [SMALL_STATE(1055)] = 50233, + [SMALL_STATE(1056)] = 50295, + [SMALL_STATE(1057)] = 50357, + [SMALL_STATE(1058)] = 50419, + [SMALL_STATE(1059)] = 50481, + [SMALL_STATE(1060)] = 50543, + [SMALL_STATE(1061)] = 50605, + [SMALL_STATE(1062)] = 50667, + [SMALL_STATE(1063)] = 50729, + [SMALL_STATE(1064)] = 50791, + [SMALL_STATE(1065)] = 50853, + [SMALL_STATE(1066)] = 50915, + [SMALL_STATE(1067)] = 50977, + [SMALL_STATE(1068)] = 51039, + [SMALL_STATE(1069)] = 51101, + [SMALL_STATE(1070)] = 51163, + [SMALL_STATE(1071)] = 51225, + [SMALL_STATE(1072)] = 51287, + [SMALL_STATE(1073)] = 51349, + [SMALL_STATE(1074)] = 51411, + [SMALL_STATE(1075)] = 51473, + [SMALL_STATE(1076)] = 51535, + [SMALL_STATE(1077)] = 51597, + [SMALL_STATE(1078)] = 51659, + [SMALL_STATE(1079)] = 51721, + [SMALL_STATE(1080)] = 51783, + [SMALL_STATE(1081)] = 51845, + [SMALL_STATE(1082)] = 51907, + [SMALL_STATE(1083)] = 51969, + [SMALL_STATE(1084)] = 52031, + [SMALL_STATE(1085)] = 52093, + [SMALL_STATE(1086)] = 52155, + [SMALL_STATE(1087)] = 52217, + [SMALL_STATE(1088)] = 52279, + [SMALL_STATE(1089)] = 52341, + [SMALL_STATE(1090)] = 52403, + [SMALL_STATE(1091)] = 52465, + [SMALL_STATE(1092)] = 52527, + [SMALL_STATE(1093)] = 52589, + [SMALL_STATE(1094)] = 52651, + [SMALL_STATE(1095)] = 52713, + [SMALL_STATE(1096)] = 52775, + [SMALL_STATE(1097)] = 52837, + [SMALL_STATE(1098)] = 52899, + [SMALL_STATE(1099)] = 52961, + [SMALL_STATE(1100)] = 53023, + [SMALL_STATE(1101)] = 53085, + [SMALL_STATE(1102)] = 53147, + [SMALL_STATE(1103)] = 53209, + [SMALL_STATE(1104)] = 53271, + [SMALL_STATE(1105)] = 53333, + [SMALL_STATE(1106)] = 53395, + [SMALL_STATE(1107)] = 53457, + [SMALL_STATE(1108)] = 53519, + [SMALL_STATE(1109)] = 53581, + [SMALL_STATE(1110)] = 53643, + [SMALL_STATE(1111)] = 53705, + [SMALL_STATE(1112)] = 53767, + [SMALL_STATE(1113)] = 53829, + [SMALL_STATE(1114)] = 53891, + [SMALL_STATE(1115)] = 53953, + [SMALL_STATE(1116)] = 54015, + [SMALL_STATE(1117)] = 54077, + [SMALL_STATE(1118)] = 54139, + [SMALL_STATE(1119)] = 54201, + [SMALL_STATE(1120)] = 54263, + [SMALL_STATE(1121)] = 54325, + [SMALL_STATE(1122)] = 54387, + [SMALL_STATE(1123)] = 54449, + [SMALL_STATE(1124)] = 54511, + [SMALL_STATE(1125)] = 54573, + [SMALL_STATE(1126)] = 54635, + [SMALL_STATE(1127)] = 54697, + [SMALL_STATE(1128)] = 54759, + [SMALL_STATE(1129)] = 54821, + [SMALL_STATE(1130)] = 54883, + [SMALL_STATE(1131)] = 54945, + [SMALL_STATE(1132)] = 55007, + [SMALL_STATE(1133)] = 55069, + [SMALL_STATE(1134)] = 55131, + [SMALL_STATE(1135)] = 55193, + [SMALL_STATE(1136)] = 55255, + [SMALL_STATE(1137)] = 55317, + [SMALL_STATE(1138)] = 55379, + [SMALL_STATE(1139)] = 55441, + [SMALL_STATE(1140)] = 55503, + [SMALL_STATE(1141)] = 55565, + [SMALL_STATE(1142)] = 55627, + [SMALL_STATE(1143)] = 55689, + [SMALL_STATE(1144)] = 55751, + [SMALL_STATE(1145)] = 55813, + [SMALL_STATE(1146)] = 55875, + [SMALL_STATE(1147)] = 55937, + [SMALL_STATE(1148)] = 55999, + [SMALL_STATE(1149)] = 56061, + [SMALL_STATE(1150)] = 56123, + [SMALL_STATE(1151)] = 56185, + [SMALL_STATE(1152)] = 56247, + [SMALL_STATE(1153)] = 56309, + [SMALL_STATE(1154)] = 56371, + [SMALL_STATE(1155)] = 56433, + [SMALL_STATE(1156)] = 56495, + [SMALL_STATE(1157)] = 56557, + [SMALL_STATE(1158)] = 56619, + [SMALL_STATE(1159)] = 56681, + [SMALL_STATE(1160)] = 56743, + [SMALL_STATE(1161)] = 56805, + [SMALL_STATE(1162)] = 56867, + [SMALL_STATE(1163)] = 56929, + [SMALL_STATE(1164)] = 56991, + [SMALL_STATE(1165)] = 57053, + [SMALL_STATE(1166)] = 57115, + [SMALL_STATE(1167)] = 57177, + [SMALL_STATE(1168)] = 57239, + [SMALL_STATE(1169)] = 57301, + [SMALL_STATE(1170)] = 57363, + [SMALL_STATE(1171)] = 57425, + [SMALL_STATE(1172)] = 57487, + [SMALL_STATE(1173)] = 57549, + [SMALL_STATE(1174)] = 57611, + [SMALL_STATE(1175)] = 57673, + [SMALL_STATE(1176)] = 57735, + [SMALL_STATE(1177)] = 57797, + [SMALL_STATE(1178)] = 57859, + [SMALL_STATE(1179)] = 57921, + [SMALL_STATE(1180)] = 57983, + [SMALL_STATE(1181)] = 58045, + [SMALL_STATE(1182)] = 58107, + [SMALL_STATE(1183)] = 58169, + [SMALL_STATE(1184)] = 58231, + [SMALL_STATE(1185)] = 58293, + [SMALL_STATE(1186)] = 58355, + [SMALL_STATE(1187)] = 58417, + [SMALL_STATE(1188)] = 58479, + [SMALL_STATE(1189)] = 58541, + [SMALL_STATE(1190)] = 58603, + [SMALL_STATE(1191)] = 58665, + [SMALL_STATE(1192)] = 58727, + [SMALL_STATE(1193)] = 58789, + [SMALL_STATE(1194)] = 58851, + [SMALL_STATE(1195)] = 58913, + [SMALL_STATE(1196)] = 58975, + [SMALL_STATE(1197)] = 59037, + [SMALL_STATE(1198)] = 59099, + [SMALL_STATE(1199)] = 59161, + [SMALL_STATE(1200)] = 59223, + [SMALL_STATE(1201)] = 59285, + [SMALL_STATE(1202)] = 59347, + [SMALL_STATE(1203)] = 59409, + [SMALL_STATE(1204)] = 59471, + [SMALL_STATE(1205)] = 59533, + [SMALL_STATE(1206)] = 59595, + [SMALL_STATE(1207)] = 59657, + [SMALL_STATE(1208)] = 59719, + [SMALL_STATE(1209)] = 59781, + [SMALL_STATE(1210)] = 59843, + [SMALL_STATE(1211)] = 59905, + [SMALL_STATE(1212)] = 59967, + [SMALL_STATE(1213)] = 60029, + [SMALL_STATE(1214)] = 60091, + [SMALL_STATE(1215)] = 60153, + [SMALL_STATE(1216)] = 60215, + [SMALL_STATE(1217)] = 60277, + [SMALL_STATE(1218)] = 60339, + [SMALL_STATE(1219)] = 60401, + [SMALL_STATE(1220)] = 60463, + [SMALL_STATE(1221)] = 60525, + [SMALL_STATE(1222)] = 60587, + [SMALL_STATE(1223)] = 60649, + [SMALL_STATE(1224)] = 60711, + [SMALL_STATE(1225)] = 60773, + [SMALL_STATE(1226)] = 60835, + [SMALL_STATE(1227)] = 60897, + [SMALL_STATE(1228)] = 60959, + [SMALL_STATE(1229)] = 61021, + [SMALL_STATE(1230)] = 61083, + [SMALL_STATE(1231)] = 61145, + [SMALL_STATE(1232)] = 61207, + [SMALL_STATE(1233)] = 61269, + [SMALL_STATE(1234)] = 61331, + [SMALL_STATE(1235)] = 61393, + [SMALL_STATE(1236)] = 61455, + [SMALL_STATE(1237)] = 61517, + [SMALL_STATE(1238)] = 61579, + [SMALL_STATE(1239)] = 61641, + [SMALL_STATE(1240)] = 61703, + [SMALL_STATE(1241)] = 61765, + [SMALL_STATE(1242)] = 61827, + [SMALL_STATE(1243)] = 61889, + [SMALL_STATE(1244)] = 61951, + [SMALL_STATE(1245)] = 62013, + [SMALL_STATE(1246)] = 62075, + [SMALL_STATE(1247)] = 62137, + [SMALL_STATE(1248)] = 62199, + [SMALL_STATE(1249)] = 62261, + [SMALL_STATE(1250)] = 62323, + [SMALL_STATE(1251)] = 62385, + [SMALL_STATE(1252)] = 62447, + [SMALL_STATE(1253)] = 62509, + [SMALL_STATE(1254)] = 62571, + [SMALL_STATE(1255)] = 62633, + [SMALL_STATE(1256)] = 62695, + [SMALL_STATE(1257)] = 62757, + [SMALL_STATE(1258)] = 62819, + [SMALL_STATE(1259)] = 62881, + [SMALL_STATE(1260)] = 62943, + [SMALL_STATE(1261)] = 63005, + [SMALL_STATE(1262)] = 63067, + [SMALL_STATE(1263)] = 63129, + [SMALL_STATE(1264)] = 63191, + [SMALL_STATE(1265)] = 63253, + [SMALL_STATE(1266)] = 63315, + [SMALL_STATE(1267)] = 63377, + [SMALL_STATE(1268)] = 63439, + [SMALL_STATE(1269)] = 63501, + [SMALL_STATE(1270)] = 63563, + [SMALL_STATE(1271)] = 63625, + [SMALL_STATE(1272)] = 63687, + [SMALL_STATE(1273)] = 63749, + [SMALL_STATE(1274)] = 63811, + [SMALL_STATE(1275)] = 63873, + [SMALL_STATE(1276)] = 63935, + [SMALL_STATE(1277)] = 63997, + [SMALL_STATE(1278)] = 64059, + [SMALL_STATE(1279)] = 64121, + [SMALL_STATE(1280)] = 64183, + [SMALL_STATE(1281)] = 64245, + [SMALL_STATE(1282)] = 64307, + [SMALL_STATE(1283)] = 64369, + [SMALL_STATE(1284)] = 64431, + [SMALL_STATE(1285)] = 64493, + [SMALL_STATE(1286)] = 64555, + [SMALL_STATE(1287)] = 64617, + [SMALL_STATE(1288)] = 64679, + [SMALL_STATE(1289)] = 64741, + [SMALL_STATE(1290)] = 64803, + [SMALL_STATE(1291)] = 64865, + [SMALL_STATE(1292)] = 64927, + [SMALL_STATE(1293)] = 64989, + [SMALL_STATE(1294)] = 65051, + [SMALL_STATE(1295)] = 65113, + [SMALL_STATE(1296)] = 65175, + [SMALL_STATE(1297)] = 65237, + [SMALL_STATE(1298)] = 65299, + [SMALL_STATE(1299)] = 65361, + [SMALL_STATE(1300)] = 65423, + [SMALL_STATE(1301)] = 65485, + [SMALL_STATE(1302)] = 65547, + [SMALL_STATE(1303)] = 65609, + [SMALL_STATE(1304)] = 65671, + [SMALL_STATE(1305)] = 65733, + [SMALL_STATE(1306)] = 65795, + [SMALL_STATE(1307)] = 65857, + [SMALL_STATE(1308)] = 65919, + [SMALL_STATE(1309)] = 65981, + [SMALL_STATE(1310)] = 66043, + [SMALL_STATE(1311)] = 66105, + [SMALL_STATE(1312)] = 66167, + [SMALL_STATE(1313)] = 66229, + [SMALL_STATE(1314)] = 66291, + [SMALL_STATE(1315)] = 66353, + [SMALL_STATE(1316)] = 66415, + [SMALL_STATE(1317)] = 66477, + [SMALL_STATE(1318)] = 66539, + [SMALL_STATE(1319)] = 66601, + [SMALL_STATE(1320)] = 66648, + [SMALL_STATE(1321)] = 66692, + [SMALL_STATE(1322)] = 66728, + [SMALL_STATE(1323)] = 66772, + [SMALL_STATE(1324)] = 66821, + [SMALL_STATE(1325)] = 66858, + [SMALL_STATE(1326)] = 66895, + [SMALL_STATE(1327)] = 66932, + [SMALL_STATE(1328)] = 66969, [SMALL_STATE(1329)] = 67004, - [SMALL_STATE(1330)] = 67053, - [SMALL_STATE(1331)] = 67090, - [SMALL_STATE(1332)] = 67133, - [SMALL_STATE(1333)] = 67182, - [SMALL_STATE(1334)] = 67225, - [SMALL_STATE(1335)] = 67260, - [SMALL_STATE(1336)] = 67303, - [SMALL_STATE(1337)] = 67340, - [SMALL_STATE(1338)] = 67389, - [SMALL_STATE(1339)] = 67421, - [SMALL_STATE(1340)] = 67453, - [SMALL_STATE(1341)] = 67487, - [SMALL_STATE(1342)] = 67521, - [SMALL_STATE(1343)] = 67567, - [SMALL_STATE(1344)] = 67613, - [SMALL_STATE(1345)] = 67649, - [SMALL_STATE(1346)] = 67685, - [SMALL_STATE(1347)] = 67721, - [SMALL_STATE(1348)] = 67755, - [SMALL_STATE(1349)] = 67791, - [SMALL_STATE(1350)] = 67845, - [SMALL_STATE(1351)] = 67881, - [SMALL_STATE(1352)] = 67917, - [SMALL_STATE(1353)] = 67953, - [SMALL_STATE(1354)] = 68001, - [SMALL_STATE(1355)] = 68037, - [SMALL_STATE(1356)] = 68083, - [SMALL_STATE(1357)] = 68117, - [SMALL_STATE(1358)] = 68165, - [SMALL_STATE(1359)] = 68219, - [SMALL_STATE(1360)] = 68255, - [SMALL_STATE(1361)] = 68287, - [SMALL_STATE(1362)] = 68319, - [SMALL_STATE(1363)] = 68351, - [SMALL_STATE(1364)] = 68383, - [SMALL_STATE(1365)] = 68415, - [SMALL_STATE(1366)] = 68447, - [SMALL_STATE(1367)] = 68479, - [SMALL_STATE(1368)] = 68511, - [SMALL_STATE(1369)] = 68543, - [SMALL_STATE(1370)] = 68575, - [SMALL_STATE(1371)] = 68607, - [SMALL_STATE(1372)] = 68643, - [SMALL_STATE(1373)] = 68675, - [SMALL_STATE(1374)] = 68707, - [SMALL_STATE(1375)] = 68761, - [SMALL_STATE(1376)] = 68793, - [SMALL_STATE(1377)] = 68825, - [SMALL_STATE(1378)] = 68857, - [SMALL_STATE(1379)] = 68889, - [SMALL_STATE(1380)] = 68921, - [SMALL_STATE(1381)] = 68953, - [SMALL_STATE(1382)] = 68985, - [SMALL_STATE(1383)] = 69017, - [SMALL_STATE(1384)] = 69049, - [SMALL_STATE(1385)] = 69085, - [SMALL_STATE(1386)] = 69117, - [SMALL_STATE(1387)] = 69149, - [SMALL_STATE(1388)] = 69195, - [SMALL_STATE(1389)] = 69229, - [SMALL_STATE(1390)] = 69258, - [SMALL_STATE(1391)] = 69289, - [SMALL_STATE(1392)] = 69320, - [SMALL_STATE(1393)] = 69351, - [SMALL_STATE(1394)] = 69382, - [SMALL_STATE(1395)] = 69413, - [SMALL_STATE(1396)] = 69444, - [SMALL_STATE(1397)] = 69475, - [SMALL_STATE(1398)] = 69506, - [SMALL_STATE(1399)] = 69537, - [SMALL_STATE(1400)] = 69568, - [SMALL_STATE(1401)] = 69599, - [SMALL_STATE(1402)] = 69634, - [SMALL_STATE(1403)] = 69669, - [SMALL_STATE(1404)] = 69700, - [SMALL_STATE(1405)] = 69731, - [SMALL_STATE(1406)] = 69762, - [SMALL_STATE(1407)] = 69793, - [SMALL_STATE(1408)] = 69824, - [SMALL_STATE(1409)] = 69855, - [SMALL_STATE(1410)] = 69890, - [SMALL_STATE(1411)] = 69921, - [SMALL_STATE(1412)] = 69952, - [SMALL_STATE(1413)] = 69983, - [SMALL_STATE(1414)] = 70014, - [SMALL_STATE(1415)] = 70045, - [SMALL_STATE(1416)] = 70076, - [SMALL_STATE(1417)] = 70107, - [SMALL_STATE(1418)] = 70138, - [SMALL_STATE(1419)] = 70169, - [SMALL_STATE(1420)] = 70200, - [SMALL_STATE(1421)] = 70257, - [SMALL_STATE(1422)] = 70292, - [SMALL_STATE(1423)] = 70323, - [SMALL_STATE(1424)] = 70354, - [SMALL_STATE(1425)] = 70389, - [SMALL_STATE(1426)] = 70420, - [SMALL_STATE(1427)] = 70451, - [SMALL_STATE(1428)] = 70482, - [SMALL_STATE(1429)] = 70513, - [SMALL_STATE(1430)] = 70544, - [SMALL_STATE(1431)] = 70575, - [SMALL_STATE(1432)] = 70610, - [SMALL_STATE(1433)] = 70667, - [SMALL_STATE(1434)] = 70702, - [SMALL_STATE(1435)] = 70733, - [SMALL_STATE(1436)] = 70764, - [SMALL_STATE(1437)] = 70795, - [SMALL_STATE(1438)] = 70826, - [SMALL_STATE(1439)] = 70857, - [SMALL_STATE(1440)] = 70888, - [SMALL_STATE(1441)] = 70919, - [SMALL_STATE(1442)] = 70950, - [SMALL_STATE(1443)] = 70981, - [SMALL_STATE(1444)] = 71012, - [SMALL_STATE(1445)] = 71043, - [SMALL_STATE(1446)] = 71074, - [SMALL_STATE(1447)] = 71105, - [SMALL_STATE(1448)] = 71136, - [SMALL_STATE(1449)] = 71171, - [SMALL_STATE(1450)] = 71202, - [SMALL_STATE(1451)] = 71237, - [SMALL_STATE(1452)] = 71268, - [SMALL_STATE(1453)] = 71303, - [SMALL_STATE(1454)] = 71334, - [SMALL_STATE(1455)] = 71365, - [SMALL_STATE(1456)] = 71396, - [SMALL_STATE(1457)] = 71427, - [SMALL_STATE(1458)] = 71458, - [SMALL_STATE(1459)] = 71493, - [SMALL_STATE(1460)] = 71524, - [SMALL_STATE(1461)] = 71555, - [SMALL_STATE(1462)] = 71586, - [SMALL_STATE(1463)] = 71617, - [SMALL_STATE(1464)] = 71652, - [SMALL_STATE(1465)] = 71683, - [SMALL_STATE(1466)] = 71714, - [SMALL_STATE(1467)] = 71745, - [SMALL_STATE(1468)] = 71776, - [SMALL_STATE(1469)] = 71833, - [SMALL_STATE(1470)] = 71890, - [SMALL_STATE(1471)] = 71925, - [SMALL_STATE(1472)] = 71960, - [SMALL_STATE(1473)] = 71991, - [SMALL_STATE(1474)] = 72022, - [SMALL_STATE(1475)] = 72053, - [SMALL_STATE(1476)] = 72084, - [SMALL_STATE(1477)] = 72115, - [SMALL_STATE(1478)] = 72146, - [SMALL_STATE(1479)] = 72177, - [SMALL_STATE(1480)] = 72208, - [SMALL_STATE(1481)] = 72239, - [SMALL_STATE(1482)] = 72274, - [SMALL_STATE(1483)] = 72305, - [SMALL_STATE(1484)] = 72336, - [SMALL_STATE(1485)] = 72367, - [SMALL_STATE(1486)] = 72398, - [SMALL_STATE(1487)] = 72429, - [SMALL_STATE(1488)] = 72460, - [SMALL_STATE(1489)] = 72491, - [SMALL_STATE(1490)] = 72522, - [SMALL_STATE(1491)] = 72553, - [SMALL_STATE(1492)] = 72584, - [SMALL_STATE(1493)] = 72619, - [SMALL_STATE(1494)] = 72650, - [SMALL_STATE(1495)] = 72681, - [SMALL_STATE(1496)] = 72716, - [SMALL_STATE(1497)] = 72747, - [SMALL_STATE(1498)] = 72778, - [SMALL_STATE(1499)] = 72809, - [SMALL_STATE(1500)] = 72840, - [SMALL_STATE(1501)] = 72871, - [SMALL_STATE(1502)] = 72902, - [SMALL_STATE(1503)] = 72959, - [SMALL_STATE(1504)] = 72990, - [SMALL_STATE(1505)] = 73047, - [SMALL_STATE(1506)] = 73078, - [SMALL_STATE(1507)] = 73109, - [SMALL_STATE(1508)] = 73166, - [SMALL_STATE(1509)] = 73223, - [SMALL_STATE(1510)] = 73258, - [SMALL_STATE(1511)] = 73293, - [SMALL_STATE(1512)] = 73328, - [SMALL_STATE(1513)] = 73359, - [SMALL_STATE(1514)] = 73394, - [SMALL_STATE(1515)] = 73424, - [SMALL_STATE(1516)] = 73454, - [SMALL_STATE(1517)] = 73484, - [SMALL_STATE(1518)] = 73516, - [SMALL_STATE(1519)] = 73546, - [SMALL_STATE(1520)] = 73580, - [SMALL_STATE(1521)] = 73610, - [SMALL_STATE(1522)] = 73642, - [SMALL_STATE(1523)] = 73674, - [SMALL_STATE(1524)] = 73706, - [SMALL_STATE(1525)] = 73742, - [SMALL_STATE(1526)] = 73776, - [SMALL_STATE(1527)] = 73806, - [SMALL_STATE(1528)] = 73836, - [SMALL_STATE(1529)] = 73866, - [SMALL_STATE(1530)] = 73896, - [SMALL_STATE(1531)] = 73926, - [SMALL_STATE(1532)] = 73958, - [SMALL_STATE(1533)] = 73994, - [SMALL_STATE(1534)] = 74024, - [SMALL_STATE(1535)] = 74056, - [SMALL_STATE(1536)] = 74090, - [SMALL_STATE(1537)] = 74118, - [SMALL_STATE(1538)] = 74148, - [SMALL_STATE(1539)] = 74180, - [SMALL_STATE(1540)] = 74214, - [SMALL_STATE(1541)] = 74242, - [SMALL_STATE(1542)] = 74294, - [SMALL_STATE(1543)] = 74346, - [SMALL_STATE(1544)] = 74398, - [SMALL_STATE(1545)] = 74450, - [SMALL_STATE(1546)] = 74480, - [SMALL_STATE(1547)] = 74510, - [SMALL_STATE(1548)] = 74540, - [SMALL_STATE(1549)] = 74570, - [SMALL_STATE(1550)] = 74600, - [SMALL_STATE(1551)] = 74632, - [SMALL_STATE(1552)] = 74662, - [SMALL_STATE(1553)] = 74692, - [SMALL_STATE(1554)] = 74722, - [SMALL_STATE(1555)] = 74774, - [SMALL_STATE(1556)] = 74802, - [SMALL_STATE(1557)] = 74834, - [SMALL_STATE(1558)] = 74886, - [SMALL_STATE(1559)] = 74916, - [SMALL_STATE(1560)] = 74946, - [SMALL_STATE(1561)] = 74976, - [SMALL_STATE(1562)] = 75010, - [SMALL_STATE(1563)] = 75040, - [SMALL_STATE(1564)] = 75072, - [SMALL_STATE(1565)] = 75102, - [SMALL_STATE(1566)] = 75132, - [SMALL_STATE(1567)] = 75162, - [SMALL_STATE(1568)] = 75192, - [SMALL_STATE(1569)] = 75222, - [SMALL_STATE(1570)] = 75252, - [SMALL_STATE(1571)] = 75282, - [SMALL_STATE(1572)] = 75312, - [SMALL_STATE(1573)] = 75344, - [SMALL_STATE(1574)] = 75376, - [SMALL_STATE(1575)] = 75418, - [SMALL_STATE(1576)] = 75450, - [SMALL_STATE(1577)] = 75482, - [SMALL_STATE(1578)] = 75534, - [SMALL_STATE(1579)] = 75586, - [SMALL_STATE(1580)] = 75618, - [SMALL_STATE(1581)] = 75650, - [SMALL_STATE(1582)] = 75686, - [SMALL_STATE(1583)] = 75738, - [SMALL_STATE(1584)] = 75790, - [SMALL_STATE(1585)] = 75822, - [SMALL_STATE(1586)] = 75858, - [SMALL_STATE(1587)] = 75890, - [SMALL_STATE(1588)] = 75922, - [SMALL_STATE(1589)] = 75952, - [SMALL_STATE(1590)] = 75986, - [SMALL_STATE(1591)] = 76016, - [SMALL_STATE(1592)] = 76048, - [SMALL_STATE(1593)] = 76078, - [SMALL_STATE(1594)] = 76108, - [SMALL_STATE(1595)] = 76138, - [SMALL_STATE(1596)] = 76168, - [SMALL_STATE(1597)] = 76198, - [SMALL_STATE(1598)] = 76250, - [SMALL_STATE(1599)] = 76282, - [SMALL_STATE(1600)] = 76312, - [SMALL_STATE(1601)] = 76342, - [SMALL_STATE(1602)] = 76374, - [SMALL_STATE(1603)] = 76402, - [SMALL_STATE(1604)] = 76432, - [SMALL_STATE(1605)] = 76462, - [SMALL_STATE(1606)] = 76492, - [SMALL_STATE(1607)] = 76522, - [SMALL_STATE(1608)] = 76574, - [SMALL_STATE(1609)] = 76604, - [SMALL_STATE(1610)] = 76638, - [SMALL_STATE(1611)] = 76674, - [SMALL_STATE(1612)] = 76704, - [SMALL_STATE(1613)] = 76738, - [SMALL_STATE(1614)] = 76768, - [SMALL_STATE(1615)] = 76798, - [SMALL_STATE(1616)] = 76850, - [SMALL_STATE(1617)] = 76882, - [SMALL_STATE(1618)] = 76914, - [SMALL_STATE(1619)] = 76944, - [SMALL_STATE(1620)] = 76974, - [SMALL_STATE(1621)] = 77002, - [SMALL_STATE(1622)] = 77032, - [SMALL_STATE(1623)] = 77068, - [SMALL_STATE(1624)] = 77104, - [SMALL_STATE(1625)] = 77136, - [SMALL_STATE(1626)] = 77188, - [SMALL_STATE(1627)] = 77218, - [SMALL_STATE(1628)] = 77250, - [SMALL_STATE(1629)] = 77302, - [SMALL_STATE(1630)] = 77332, - [SMALL_STATE(1631)] = 77361, - [SMALL_STATE(1632)] = 77394, - [SMALL_STATE(1633)] = 77427, - [SMALL_STATE(1634)] = 77460, - [SMALL_STATE(1635)] = 77493, - [SMALL_STATE(1636)] = 77526, - [SMALL_STATE(1637)] = 77555, - [SMALL_STATE(1638)] = 77584, - [SMALL_STATE(1639)] = 77613, - [SMALL_STATE(1640)] = 77642, - [SMALL_STATE(1641)] = 77675, - [SMALL_STATE(1642)] = 77704, - [SMALL_STATE(1643)] = 77733, - [SMALL_STATE(1644)] = 77766, - [SMALL_STATE(1645)] = 77799, - [SMALL_STATE(1646)] = 77828, - [SMALL_STATE(1647)] = 77859, - [SMALL_STATE(1648)] = 77890, - [SMALL_STATE(1649)] = 77919, - [SMALL_STATE(1650)] = 77948, - [SMALL_STATE(1651)] = 77977, - [SMALL_STATE(1652)] = 78010, - [SMALL_STATE(1653)] = 78039, - [SMALL_STATE(1654)] = 78088, - [SMALL_STATE(1655)] = 78117, - [SMALL_STATE(1656)] = 78146, - [SMALL_STATE(1657)] = 78177, - [SMALL_STATE(1658)] = 78208, - [SMALL_STATE(1659)] = 78257, - [SMALL_STATE(1660)] = 78290, - [SMALL_STATE(1661)] = 78319, - [SMALL_STATE(1662)] = 78368, - [SMALL_STATE(1663)] = 78397, - [SMALL_STATE(1664)] = 78426, - [SMALL_STATE(1665)] = 78455, - [SMALL_STATE(1666)] = 78484, - [SMALL_STATE(1667)] = 78517, - [SMALL_STATE(1668)] = 78546, - [SMALL_STATE(1669)] = 78575, - [SMALL_STATE(1670)] = 78604, - [SMALL_STATE(1671)] = 78633, - [SMALL_STATE(1672)] = 78662, - [SMALL_STATE(1673)] = 78691, - [SMALL_STATE(1674)] = 78720, - [SMALL_STATE(1675)] = 78749, - [SMALL_STATE(1676)] = 78778, - [SMALL_STATE(1677)] = 78827, - [SMALL_STATE(1678)] = 78856, - [SMALL_STATE(1679)] = 78885, - [SMALL_STATE(1680)] = 78914, - [SMALL_STATE(1681)] = 78943, - [SMALL_STATE(1682)] = 78972, - [SMALL_STATE(1683)] = 79021, - [SMALL_STATE(1684)] = 79050, - [SMALL_STATE(1685)] = 79079, - [SMALL_STATE(1686)] = 79108, - [SMALL_STATE(1687)] = 79137, - [SMALL_STATE(1688)] = 79166, - [SMALL_STATE(1689)] = 79195, - [SMALL_STATE(1690)] = 79224, - [SMALL_STATE(1691)] = 79253, - [SMALL_STATE(1692)] = 79302, - [SMALL_STATE(1693)] = 79331, - [SMALL_STATE(1694)] = 79360, - [SMALL_STATE(1695)] = 79389, - [SMALL_STATE(1696)] = 79438, - [SMALL_STATE(1697)] = 79467, - [SMALL_STATE(1698)] = 79496, - [SMALL_STATE(1699)] = 79525, - [SMALL_STATE(1700)] = 79554, - [SMALL_STATE(1701)] = 79583, - [SMALL_STATE(1702)] = 79612, - [SMALL_STATE(1703)] = 79641, - [SMALL_STATE(1704)] = 79670, - [SMALL_STATE(1705)] = 79699, - [SMALL_STATE(1706)] = 79728, - [SMALL_STATE(1707)] = 79757, - [SMALL_STATE(1708)] = 79806, - [SMALL_STATE(1709)] = 79835, - [SMALL_STATE(1710)] = 79864, - [SMALL_STATE(1711)] = 79897, - [SMALL_STATE(1712)] = 79926, - [SMALL_STATE(1713)] = 79955, - [SMALL_STATE(1714)] = 80004, - [SMALL_STATE(1715)] = 80033, - [SMALL_STATE(1716)] = 80062, - [SMALL_STATE(1717)] = 80091, - [SMALL_STATE(1718)] = 80120, - [SMALL_STATE(1719)] = 80149, - [SMALL_STATE(1720)] = 80178, - [SMALL_STATE(1721)] = 80207, - [SMALL_STATE(1722)] = 80240, - [SMALL_STATE(1723)] = 80269, - [SMALL_STATE(1724)] = 80298, - [SMALL_STATE(1725)] = 80327, - [SMALL_STATE(1726)] = 80376, - [SMALL_STATE(1727)] = 80425, - [SMALL_STATE(1728)] = 80454, - [SMALL_STATE(1729)] = 80483, - [SMALL_STATE(1730)] = 80512, - [SMALL_STATE(1731)] = 80541, - [SMALL_STATE(1732)] = 80590, - [SMALL_STATE(1733)] = 80639, - [SMALL_STATE(1734)] = 80688, - [SMALL_STATE(1735)] = 80737, - [SMALL_STATE(1736)] = 80766, - [SMALL_STATE(1737)] = 80815, - [SMALL_STATE(1738)] = 80844, - [SMALL_STATE(1739)] = 80873, - [SMALL_STATE(1740)] = 80902, - [SMALL_STATE(1741)] = 80931, - [SMALL_STATE(1742)] = 80960, - [SMALL_STATE(1743)] = 80993, - [SMALL_STATE(1744)] = 81022, - [SMALL_STATE(1745)] = 81070, - [SMALL_STATE(1746)] = 81098, - [SMALL_STATE(1747)] = 81146, - [SMALL_STATE(1748)] = 81174, - [SMALL_STATE(1749)] = 81202, - [SMALL_STATE(1750)] = 81250, - [SMALL_STATE(1751)] = 81278, - [SMALL_STATE(1752)] = 81306, - [SMALL_STATE(1753)] = 81334, - [SMALL_STATE(1754)] = 81382, - [SMALL_STATE(1755)] = 81410, - [SMALL_STATE(1756)] = 81438, - [SMALL_STATE(1757)] = 81466, - [SMALL_STATE(1758)] = 81494, - [SMALL_STATE(1759)] = 81542, - [SMALL_STATE(1760)] = 81590, - [SMALL_STATE(1761)] = 81638, - [SMALL_STATE(1762)] = 81666, - [SMALL_STATE(1763)] = 81694, - [SMALL_STATE(1764)] = 81742, - [SMALL_STATE(1765)] = 81790, - [SMALL_STATE(1766)] = 81838, - [SMALL_STATE(1767)] = 81866, - [SMALL_STATE(1768)] = 81894, - [SMALL_STATE(1769)] = 81942, - [SMALL_STATE(1770)] = 81970, - [SMALL_STATE(1771)] = 82018, - [SMALL_STATE(1772)] = 82066, - [SMALL_STATE(1773)] = 82094, - [SMALL_STATE(1774)] = 82122, - [SMALL_STATE(1775)] = 82150, - [SMALL_STATE(1776)] = 82198, - [SMALL_STATE(1777)] = 82246, - [SMALL_STATE(1778)] = 82274, - [SMALL_STATE(1779)] = 82322, - [SMALL_STATE(1780)] = 82350, - [SMALL_STATE(1781)] = 82378, - [SMALL_STATE(1782)] = 82426, - [SMALL_STATE(1783)] = 82454, - [SMALL_STATE(1784)] = 82502, - [SMALL_STATE(1785)] = 82550, - [SMALL_STATE(1786)] = 82598, - [SMALL_STATE(1787)] = 82626, - [SMALL_STATE(1788)] = 82654, - [SMALL_STATE(1789)] = 82682, - [SMALL_STATE(1790)] = 82710, - [SMALL_STATE(1791)] = 82738, - [SMALL_STATE(1792)] = 82766, - [SMALL_STATE(1793)] = 82794, - [SMALL_STATE(1794)] = 82822, - [SMALL_STATE(1795)] = 82850, - [SMALL_STATE(1796)] = 82878, - [SMALL_STATE(1797)] = 82926, - [SMALL_STATE(1798)] = 82974, - [SMALL_STATE(1799)] = 83022, - [SMALL_STATE(1800)] = 83054, - [SMALL_STATE(1801)] = 83100, - [SMALL_STATE(1802)] = 83128, - [SMALL_STATE(1803)] = 83176, - [SMALL_STATE(1804)] = 83224, - [SMALL_STATE(1805)] = 83272, - [SMALL_STATE(1806)] = 83320, - [SMALL_STATE(1807)] = 83368, - [SMALL_STATE(1808)] = 83396, - [SMALL_STATE(1809)] = 83444, - [SMALL_STATE(1810)] = 83472, - [SMALL_STATE(1811)] = 83500, - [SMALL_STATE(1812)] = 83548, - [SMALL_STATE(1813)] = 83596, - [SMALL_STATE(1814)] = 83624, - [SMALL_STATE(1815)] = 83652, - [SMALL_STATE(1816)] = 83684, - [SMALL_STATE(1817)] = 83732, - [SMALL_STATE(1818)] = 83760, - [SMALL_STATE(1819)] = 83788, - [SMALL_STATE(1820)] = 83816, - [SMALL_STATE(1821)] = 83864, - [SMALL_STATE(1822)] = 83912, - [SMALL_STATE(1823)] = 83940, - [SMALL_STATE(1824)] = 83968, - [SMALL_STATE(1825)] = 83996, - [SMALL_STATE(1826)] = 84044, - [SMALL_STATE(1827)] = 84090, - [SMALL_STATE(1828)] = 84138, - [SMALL_STATE(1829)] = 84166, - [SMALL_STATE(1830)] = 84194, - [SMALL_STATE(1831)] = 84222, - [SMALL_STATE(1832)] = 84270, - [SMALL_STATE(1833)] = 84298, - [SMALL_STATE(1834)] = 84334, - [SMALL_STATE(1835)] = 84362, - [SMALL_STATE(1836)] = 84410, - [SMALL_STATE(1837)] = 84458, - [SMALL_STATE(1838)] = 84506, - [SMALL_STATE(1839)] = 84554, - [SMALL_STATE(1840)] = 84582, - [SMALL_STATE(1841)] = 84630, - [SMALL_STATE(1842)] = 84658, - [SMALL_STATE(1843)] = 84686, - [SMALL_STATE(1844)] = 84714, - [SMALL_STATE(1845)] = 84742, - [SMALL_STATE(1846)] = 84770, - [SMALL_STATE(1847)] = 84818, - [SMALL_STATE(1848)] = 84866, - [SMALL_STATE(1849)] = 84914, - [SMALL_STATE(1850)] = 84962, - [SMALL_STATE(1851)] = 85010, - [SMALL_STATE(1852)] = 85058, - [SMALL_STATE(1853)] = 85106, - [SMALL_STATE(1854)] = 85154, - [SMALL_STATE(1855)] = 85202, - [SMALL_STATE(1856)] = 85250, - [SMALL_STATE(1857)] = 85278, - [SMALL_STATE(1858)] = 85326, - [SMALL_STATE(1859)] = 85374, - [SMALL_STATE(1860)] = 85422, - [SMALL_STATE(1861)] = 85467, - [SMALL_STATE(1862)] = 85494, - [SMALL_STATE(1863)] = 85539, - [SMALL_STATE(1864)] = 85584, - [SMALL_STATE(1865)] = 85629, - [SMALL_STATE(1866)] = 85674, - [SMALL_STATE(1867)] = 85719, - [SMALL_STATE(1868)] = 85754, - [SMALL_STATE(1869)] = 85799, - [SMALL_STATE(1870)] = 85834, - [SMALL_STATE(1871)] = 85869, - [SMALL_STATE(1872)] = 85904, - [SMALL_STATE(1873)] = 85939, - [SMALL_STATE(1874)] = 85974, - [SMALL_STATE(1875)] = 86009, - [SMALL_STATE(1876)] = 86044, - [SMALL_STATE(1877)] = 86079, - [SMALL_STATE(1878)] = 86106, - [SMALL_STATE(1879)] = 86151, - [SMALL_STATE(1880)] = 86178, - [SMALL_STATE(1881)] = 86213, - [SMALL_STATE(1882)] = 86240, - [SMALL_STATE(1883)] = 86267, - [SMALL_STATE(1884)] = 86294, - [SMALL_STATE(1885)] = 86329, - [SMALL_STATE(1886)] = 86364, - [SMALL_STATE(1887)] = 86399, - [SMALL_STATE(1888)] = 86444, - [SMALL_STATE(1889)] = 86479, - [SMALL_STATE(1890)] = 86514, - [SMALL_STATE(1891)] = 86559, - [SMALL_STATE(1892)] = 86586, - [SMALL_STATE(1893)] = 86621, - [SMALL_STATE(1894)] = 86666, - [SMALL_STATE(1895)] = 86693, - [SMALL_STATE(1896)] = 86728, - [SMALL_STATE(1897)] = 86763, - [SMALL_STATE(1898)] = 86790, - [SMALL_STATE(1899)] = 86825, - [SMALL_STATE(1900)] = 86860, - [SMALL_STATE(1901)] = 86895, - [SMALL_STATE(1902)] = 86940, - [SMALL_STATE(1903)] = 86985, - [SMALL_STATE(1904)] = 87020, - [SMALL_STATE(1905)] = 87047, - [SMALL_STATE(1906)] = 87082, - [SMALL_STATE(1907)] = 87117, - [SMALL_STATE(1908)] = 87152, - [SMALL_STATE(1909)] = 87197, - [SMALL_STATE(1910)] = 87232, - [SMALL_STATE(1911)] = 87277, - [SMALL_STATE(1912)] = 87322, - [SMALL_STATE(1913)] = 87349, - [SMALL_STATE(1914)] = 87391, - [SMALL_STATE(1915)] = 87427, + [SMALL_STATE(1330)] = 67047, + [SMALL_STATE(1331)] = 67096, + [SMALL_STATE(1332)] = 67145, + [SMALL_STATE(1333)] = 67188, + [SMALL_STATE(1334)] = 67231, + [SMALL_STATE(1335)] = 67280, + [SMALL_STATE(1336)] = 67325, + [SMALL_STATE(1337)] = 67374, + [SMALL_STATE(1338)] = 67423, + [SMALL_STATE(1339)] = 67460, + [SMALL_STATE(1340)] = 67497, + [SMALL_STATE(1341)] = 67532, + [SMALL_STATE(1342)] = 67569, + [SMALL_STATE(1343)] = 67604, + [SMALL_STATE(1344)] = 67653, + [SMALL_STATE(1345)] = 67696, + [SMALL_STATE(1346)] = 67733, + [SMALL_STATE(1347)] = 67770, + [SMALL_STATE(1348)] = 67819, + [SMALL_STATE(1349)] = 67862, + [SMALL_STATE(1350)] = 67899, + [SMALL_STATE(1351)] = 67931, + [SMALL_STATE(1352)] = 67967, + [SMALL_STATE(1353)] = 67999, + [SMALL_STATE(1354)] = 68031, + [SMALL_STATE(1355)] = 68067, + [SMALL_STATE(1356)] = 68099, + [SMALL_STATE(1357)] = 68153, + [SMALL_STATE(1358)] = 68189, + [SMALL_STATE(1359)] = 68237, + [SMALL_STATE(1360)] = 68273, + [SMALL_STATE(1361)] = 68309, + [SMALL_STATE(1362)] = 68363, + [SMALL_STATE(1363)] = 68409, + [SMALL_STATE(1364)] = 68441, + [SMALL_STATE(1365)] = 68473, + [SMALL_STATE(1366)] = 68505, + [SMALL_STATE(1367)] = 68537, + [SMALL_STATE(1368)] = 68571, + [SMALL_STATE(1369)] = 68603, + [SMALL_STATE(1370)] = 68635, + [SMALL_STATE(1371)] = 68667, + [SMALL_STATE(1372)] = 68703, + [SMALL_STATE(1373)] = 68757, + [SMALL_STATE(1374)] = 68793, + [SMALL_STATE(1375)] = 68825, + [SMALL_STATE(1376)] = 68857, + [SMALL_STATE(1377)] = 68893, + [SMALL_STATE(1378)] = 68925, + [SMALL_STATE(1379)] = 68957, + [SMALL_STATE(1380)] = 68989, + [SMALL_STATE(1381)] = 69025, + [SMALL_STATE(1382)] = 69059, + [SMALL_STATE(1383)] = 69093, + [SMALL_STATE(1384)] = 69125, + [SMALL_STATE(1385)] = 69157, + [SMALL_STATE(1386)] = 69189, + [SMALL_STATE(1387)] = 69225, + [SMALL_STATE(1388)] = 69271, + [SMALL_STATE(1389)] = 69317, + [SMALL_STATE(1390)] = 69351, + [SMALL_STATE(1391)] = 69399, + [SMALL_STATE(1392)] = 69431, + [SMALL_STATE(1393)] = 69463, + [SMALL_STATE(1394)] = 69509, + [SMALL_STATE(1395)] = 69543, + [SMALL_STATE(1396)] = 69575, + [SMALL_STATE(1397)] = 69607, + [SMALL_STATE(1398)] = 69639, + [SMALL_STATE(1399)] = 69675, + [SMALL_STATE(1400)] = 69707, + [SMALL_STATE(1401)] = 69739, + [SMALL_STATE(1402)] = 69771, + [SMALL_STATE(1403)] = 69802, + [SMALL_STATE(1404)] = 69859, + [SMALL_STATE(1405)] = 69890, + [SMALL_STATE(1406)] = 69925, + [SMALL_STATE(1407)] = 69956, + [SMALL_STATE(1408)] = 69987, + [SMALL_STATE(1409)] = 70018, + [SMALL_STATE(1410)] = 70075, + [SMALL_STATE(1411)] = 70132, + [SMALL_STATE(1412)] = 70167, + [SMALL_STATE(1413)] = 70202, + [SMALL_STATE(1414)] = 70233, + [SMALL_STATE(1415)] = 70264, + [SMALL_STATE(1416)] = 70295, + [SMALL_STATE(1417)] = 70352, + [SMALL_STATE(1418)] = 70409, + [SMALL_STATE(1419)] = 70440, + [SMALL_STATE(1420)] = 70471, + [SMALL_STATE(1421)] = 70502, + [SMALL_STATE(1422)] = 70533, + [SMALL_STATE(1423)] = 70564, + [SMALL_STATE(1424)] = 70595, + [SMALL_STATE(1425)] = 70626, + [SMALL_STATE(1426)] = 70657, + [SMALL_STATE(1427)] = 70688, + [SMALL_STATE(1428)] = 70719, + [SMALL_STATE(1429)] = 70750, + [SMALL_STATE(1430)] = 70781, + [SMALL_STATE(1431)] = 70812, + [SMALL_STATE(1432)] = 70843, + [SMALL_STATE(1433)] = 70874, + [SMALL_STATE(1434)] = 70905, + [SMALL_STATE(1435)] = 70936, + [SMALL_STATE(1436)] = 70967, + [SMALL_STATE(1437)] = 71002, + [SMALL_STATE(1438)] = 71033, + [SMALL_STATE(1439)] = 71064, + [SMALL_STATE(1440)] = 71095, + [SMALL_STATE(1441)] = 71126, + [SMALL_STATE(1442)] = 71157, + [SMALL_STATE(1443)] = 71188, + [SMALL_STATE(1444)] = 71219, + [SMALL_STATE(1445)] = 71250, + [SMALL_STATE(1446)] = 71281, + [SMALL_STATE(1447)] = 71316, + [SMALL_STATE(1448)] = 71347, + [SMALL_STATE(1449)] = 71378, + [SMALL_STATE(1450)] = 71407, + [SMALL_STATE(1451)] = 71442, + [SMALL_STATE(1452)] = 71473, + [SMALL_STATE(1453)] = 71504, + [SMALL_STATE(1454)] = 71539, + [SMALL_STATE(1455)] = 71570, + [SMALL_STATE(1456)] = 71601, + [SMALL_STATE(1457)] = 71632, + [SMALL_STATE(1458)] = 71663, + [SMALL_STATE(1459)] = 71694, + [SMALL_STATE(1460)] = 71729, + [SMALL_STATE(1461)] = 71760, + [SMALL_STATE(1462)] = 71791, + [SMALL_STATE(1463)] = 71822, + [SMALL_STATE(1464)] = 71853, + [SMALL_STATE(1465)] = 71884, + [SMALL_STATE(1466)] = 71915, + [SMALL_STATE(1467)] = 71946, + [SMALL_STATE(1468)] = 71981, + [SMALL_STATE(1469)] = 72012, + [SMALL_STATE(1470)] = 72043, + [SMALL_STATE(1471)] = 72074, + [SMALL_STATE(1472)] = 72105, + [SMALL_STATE(1473)] = 72136, + [SMALL_STATE(1474)] = 72167, + [SMALL_STATE(1475)] = 72198, + [SMALL_STATE(1476)] = 72229, + [SMALL_STATE(1477)] = 72260, + [SMALL_STATE(1478)] = 72291, + [SMALL_STATE(1479)] = 72322, + [SMALL_STATE(1480)] = 72353, + [SMALL_STATE(1481)] = 72384, + [SMALL_STATE(1482)] = 72415, + [SMALL_STATE(1483)] = 72446, + [SMALL_STATE(1484)] = 72477, + [SMALL_STATE(1485)] = 72508, + [SMALL_STATE(1486)] = 72539, + [SMALL_STATE(1487)] = 72570, + [SMALL_STATE(1488)] = 72605, + [SMALL_STATE(1489)] = 72636, + [SMALL_STATE(1490)] = 72667, + [SMALL_STATE(1491)] = 72702, + [SMALL_STATE(1492)] = 72733, + [SMALL_STATE(1493)] = 72764, + [SMALL_STATE(1494)] = 72795, + [SMALL_STATE(1495)] = 72830, + [SMALL_STATE(1496)] = 72861, + [SMALL_STATE(1497)] = 72892, + [SMALL_STATE(1498)] = 72923, + [SMALL_STATE(1499)] = 72958, + [SMALL_STATE(1500)] = 72989, + [SMALL_STATE(1501)] = 73024, + [SMALL_STATE(1502)] = 73055, + [SMALL_STATE(1503)] = 73090, + [SMALL_STATE(1504)] = 73121, + [SMALL_STATE(1505)] = 73152, + [SMALL_STATE(1506)] = 73187, + [SMALL_STATE(1507)] = 73222, + [SMALL_STATE(1508)] = 73253, + [SMALL_STATE(1509)] = 73284, + [SMALL_STATE(1510)] = 73341, + [SMALL_STATE(1511)] = 73372, + [SMALL_STATE(1512)] = 73403, + [SMALL_STATE(1513)] = 73460, + [SMALL_STATE(1514)] = 73491, + [SMALL_STATE(1515)] = 73522, + [SMALL_STATE(1516)] = 73553, + [SMALL_STATE(1517)] = 73584, + [SMALL_STATE(1518)] = 73615, + [SMALL_STATE(1519)] = 73646, + [SMALL_STATE(1520)] = 73677, + [SMALL_STATE(1521)] = 73712, + [SMALL_STATE(1522)] = 73743, + [SMALL_STATE(1523)] = 73778, + [SMALL_STATE(1524)] = 73809, + [SMALL_STATE(1525)] = 73840, + [SMALL_STATE(1526)] = 73875, + [SMALL_STATE(1527)] = 73906, + [SMALL_STATE(1528)] = 73941, + [SMALL_STATE(1529)] = 73998, + [SMALL_STATE(1530)] = 74028, + [SMALL_STATE(1531)] = 74058, + [SMALL_STATE(1532)] = 74088, + [SMALL_STATE(1533)] = 74118, + [SMALL_STATE(1534)] = 74150, + [SMALL_STATE(1535)] = 74180, + [SMALL_STATE(1536)] = 74232, + [SMALL_STATE(1537)] = 74262, + [SMALL_STATE(1538)] = 74294, + [SMALL_STATE(1539)] = 74330, + [SMALL_STATE(1540)] = 74362, + [SMALL_STATE(1541)] = 74392, + [SMALL_STATE(1542)] = 74444, + [SMALL_STATE(1543)] = 74476, + [SMALL_STATE(1544)] = 74506, + [SMALL_STATE(1545)] = 74538, + [SMALL_STATE(1546)] = 74568, + [SMALL_STATE(1547)] = 74598, + [SMALL_STATE(1548)] = 74628, + [SMALL_STATE(1549)] = 74680, + [SMALL_STATE(1550)] = 74710, + [SMALL_STATE(1551)] = 74740, + [SMALL_STATE(1552)] = 74772, + [SMALL_STATE(1553)] = 74806, + [SMALL_STATE(1554)] = 74836, + [SMALL_STATE(1555)] = 74870, + [SMALL_STATE(1556)] = 74900, + [SMALL_STATE(1557)] = 74930, + [SMALL_STATE(1558)] = 74964, + [SMALL_STATE(1559)] = 74994, + [SMALL_STATE(1560)] = 75024, + [SMALL_STATE(1561)] = 75060, + [SMALL_STATE(1562)] = 75090, + [SMALL_STATE(1563)] = 75122, + [SMALL_STATE(1564)] = 75152, + [SMALL_STATE(1565)] = 75186, + [SMALL_STATE(1566)] = 75238, + [SMALL_STATE(1567)] = 75268, + [SMALL_STATE(1568)] = 75302, + [SMALL_STATE(1569)] = 75354, + [SMALL_STATE(1570)] = 75384, + [SMALL_STATE(1571)] = 75420, + [SMALL_STATE(1572)] = 75450, + [SMALL_STATE(1573)] = 75502, + [SMALL_STATE(1574)] = 75554, + [SMALL_STATE(1575)] = 75584, + [SMALL_STATE(1576)] = 75616, + [SMALL_STATE(1577)] = 75652, + [SMALL_STATE(1578)] = 75682, + [SMALL_STATE(1579)] = 75734, + [SMALL_STATE(1580)] = 75786, + [SMALL_STATE(1581)] = 75818, + [SMALL_STATE(1582)] = 75848, + [SMALL_STATE(1583)] = 75878, + [SMALL_STATE(1584)] = 75908, + [SMALL_STATE(1585)] = 75940, + [SMALL_STATE(1586)] = 75972, + [SMALL_STATE(1587)] = 76024, + [SMALL_STATE(1588)] = 76054, + [SMALL_STATE(1589)] = 76088, + [SMALL_STATE(1590)] = 76118, + [SMALL_STATE(1591)] = 76146, + [SMALL_STATE(1592)] = 76176, + [SMALL_STATE(1593)] = 76208, + [SMALL_STATE(1594)] = 76240, + [SMALL_STATE(1595)] = 76270, + [SMALL_STATE(1596)] = 76322, + [SMALL_STATE(1597)] = 76354, + [SMALL_STATE(1598)] = 76406, + [SMALL_STATE(1599)] = 76436, + [SMALL_STATE(1600)] = 76464, + [SMALL_STATE(1601)] = 76496, + [SMALL_STATE(1602)] = 76528, + [SMALL_STATE(1603)] = 76558, + [SMALL_STATE(1604)] = 76590, + [SMALL_STATE(1605)] = 76620, + [SMALL_STATE(1606)] = 76654, + [SMALL_STATE(1607)] = 76684, + [SMALL_STATE(1608)] = 76736, + [SMALL_STATE(1609)] = 76766, + [SMALL_STATE(1610)] = 76796, + [SMALL_STATE(1611)] = 76826, + [SMALL_STATE(1612)] = 76858, + [SMALL_STATE(1613)] = 76888, + [SMALL_STATE(1614)] = 76918, + [SMALL_STATE(1615)] = 76950, + [SMALL_STATE(1616)] = 76982, + [SMALL_STATE(1617)] = 77014, + [SMALL_STATE(1618)] = 77050, + [SMALL_STATE(1619)] = 77080, + [SMALL_STATE(1620)] = 77110, + [SMALL_STATE(1621)] = 77140, + [SMALL_STATE(1622)] = 77170, + [SMALL_STATE(1623)] = 77200, + [SMALL_STATE(1624)] = 77230, + [SMALL_STATE(1625)] = 77262, + [SMALL_STATE(1626)] = 77292, + [SMALL_STATE(1627)] = 77322, + [SMALL_STATE(1628)] = 77374, + [SMALL_STATE(1629)] = 77402, + [SMALL_STATE(1630)] = 77432, + [SMALL_STATE(1631)] = 77462, + [SMALL_STATE(1632)] = 77494, + [SMALL_STATE(1633)] = 77528, + [SMALL_STATE(1634)] = 77558, + [SMALL_STATE(1635)] = 77590, + [SMALL_STATE(1636)] = 77620, + [SMALL_STATE(1637)] = 77648, + [SMALL_STATE(1638)] = 77680, + [SMALL_STATE(1639)] = 77708, + [SMALL_STATE(1640)] = 77760, + [SMALL_STATE(1641)] = 77792, + [SMALL_STATE(1642)] = 77828, + [SMALL_STATE(1643)] = 77858, + [SMALL_STATE(1644)] = 77900, + [SMALL_STATE(1645)] = 77930, + [SMALL_STATE(1646)] = 77966, + [SMALL_STATE(1647)] = 77996, + [SMALL_STATE(1648)] = 78025, + [SMALL_STATE(1649)] = 78054, + [SMALL_STATE(1650)] = 78083, + [SMALL_STATE(1651)] = 78112, + [SMALL_STATE(1652)] = 78141, + [SMALL_STATE(1653)] = 78170, + [SMALL_STATE(1654)] = 78219, + [SMALL_STATE(1655)] = 78248, + [SMALL_STATE(1656)] = 78297, + [SMALL_STATE(1657)] = 78326, + [SMALL_STATE(1658)] = 78359, + [SMALL_STATE(1659)] = 78392, + [SMALL_STATE(1660)] = 78423, + [SMALL_STATE(1661)] = 78452, + [SMALL_STATE(1662)] = 78501, + [SMALL_STATE(1663)] = 78530, + [SMALL_STATE(1664)] = 78559, + [SMALL_STATE(1665)] = 78588, + [SMALL_STATE(1666)] = 78617, + [SMALL_STATE(1667)] = 78646, + [SMALL_STATE(1668)] = 78679, + [SMALL_STATE(1669)] = 78728, + [SMALL_STATE(1670)] = 78757, + [SMALL_STATE(1671)] = 78786, + [SMALL_STATE(1672)] = 78819, + [SMALL_STATE(1673)] = 78848, + [SMALL_STATE(1674)] = 78877, + [SMALL_STATE(1675)] = 78906, + [SMALL_STATE(1676)] = 78937, + [SMALL_STATE(1677)] = 78970, + [SMALL_STATE(1678)] = 79001, + [SMALL_STATE(1679)] = 79050, + [SMALL_STATE(1680)] = 79083, + [SMALL_STATE(1681)] = 79112, + [SMALL_STATE(1682)] = 79141, + [SMALL_STATE(1683)] = 79174, + [SMALL_STATE(1684)] = 79203, + [SMALL_STATE(1685)] = 79232, + [SMALL_STATE(1686)] = 79265, + [SMALL_STATE(1687)] = 79294, + [SMALL_STATE(1688)] = 79327, + [SMALL_STATE(1689)] = 79356, + [SMALL_STATE(1690)] = 79389, + [SMALL_STATE(1691)] = 79418, + [SMALL_STATE(1692)] = 79447, + [SMALL_STATE(1693)] = 79476, + [SMALL_STATE(1694)] = 79525, + [SMALL_STATE(1695)] = 79554, + [SMALL_STATE(1696)] = 79583, + [SMALL_STATE(1697)] = 79612, + [SMALL_STATE(1698)] = 79641, + [SMALL_STATE(1699)] = 79670, + [SMALL_STATE(1700)] = 79699, + [SMALL_STATE(1701)] = 79728, + [SMALL_STATE(1702)] = 79757, + [SMALL_STATE(1703)] = 79786, + [SMALL_STATE(1704)] = 79815, + [SMALL_STATE(1705)] = 79844, + [SMALL_STATE(1706)] = 79873, + [SMALL_STATE(1707)] = 79902, + [SMALL_STATE(1708)] = 79931, + [SMALL_STATE(1709)] = 79960, + [SMALL_STATE(1710)] = 79989, + [SMALL_STATE(1711)] = 80018, + [SMALL_STATE(1712)] = 80047, + [SMALL_STATE(1713)] = 80076, + [SMALL_STATE(1714)] = 80105, + [SMALL_STATE(1715)] = 80154, + [SMALL_STATE(1716)] = 80203, + [SMALL_STATE(1717)] = 80252, + [SMALL_STATE(1718)] = 80281, + [SMALL_STATE(1719)] = 80314, + [SMALL_STATE(1720)] = 80343, + [SMALL_STATE(1721)] = 80372, + [SMALL_STATE(1722)] = 80401, + [SMALL_STATE(1723)] = 80434, + [SMALL_STATE(1724)] = 80463, + [SMALL_STATE(1725)] = 80492, + [SMALL_STATE(1726)] = 80541, + [SMALL_STATE(1727)] = 80570, + [SMALL_STATE(1728)] = 80599, + [SMALL_STATE(1729)] = 80628, + [SMALL_STATE(1730)] = 80657, + [SMALL_STATE(1731)] = 80686, + [SMALL_STATE(1732)] = 80715, + [SMALL_STATE(1733)] = 80744, + [SMALL_STATE(1734)] = 80773, + [SMALL_STATE(1735)] = 80802, + [SMALL_STATE(1736)] = 80831, + [SMALL_STATE(1737)] = 80880, + [SMALL_STATE(1738)] = 80909, + [SMALL_STATE(1739)] = 80938, + [SMALL_STATE(1740)] = 80967, + [SMALL_STATE(1741)] = 80998, + [SMALL_STATE(1742)] = 81047, + [SMALL_STATE(1743)] = 81076, + [SMALL_STATE(1744)] = 81105, + [SMALL_STATE(1745)] = 81138, + [SMALL_STATE(1746)] = 81167, + [SMALL_STATE(1747)] = 81196, + [SMALL_STATE(1748)] = 81225, + [SMALL_STATE(1749)] = 81254, + [SMALL_STATE(1750)] = 81287, + [SMALL_STATE(1751)] = 81316, + [SMALL_STATE(1752)] = 81345, + [SMALL_STATE(1753)] = 81394, + [SMALL_STATE(1754)] = 81423, + [SMALL_STATE(1755)] = 81452, + [SMALL_STATE(1756)] = 81481, + [SMALL_STATE(1757)] = 81510, + [SMALL_STATE(1758)] = 81559, + [SMALL_STATE(1759)] = 81588, + [SMALL_STATE(1760)] = 81637, + [SMALL_STATE(1761)] = 81666, + [SMALL_STATE(1762)] = 81715, + [SMALL_STATE(1763)] = 81743, + [SMALL_STATE(1764)] = 81791, + [SMALL_STATE(1765)] = 81839, + [SMALL_STATE(1766)] = 81887, + [SMALL_STATE(1767)] = 81935, + [SMALL_STATE(1768)] = 81983, + [SMALL_STATE(1769)] = 82031, + [SMALL_STATE(1770)] = 82059, + [SMALL_STATE(1771)] = 82107, + [SMALL_STATE(1772)] = 82153, + [SMALL_STATE(1773)] = 82201, + [SMALL_STATE(1774)] = 82229, + [SMALL_STATE(1775)] = 82277, + [SMALL_STATE(1776)] = 82325, + [SMALL_STATE(1777)] = 82353, + [SMALL_STATE(1778)] = 82401, + [SMALL_STATE(1779)] = 82449, + [SMALL_STATE(1780)] = 82485, + [SMALL_STATE(1781)] = 82533, + [SMALL_STATE(1782)] = 82561, + [SMALL_STATE(1783)] = 82609, + [SMALL_STATE(1784)] = 82657, + [SMALL_STATE(1785)] = 82705, + [SMALL_STATE(1786)] = 82733, + [SMALL_STATE(1787)] = 82761, + [SMALL_STATE(1788)] = 82789, + [SMALL_STATE(1789)] = 82817, + [SMALL_STATE(1790)] = 82845, + [SMALL_STATE(1791)] = 82893, + [SMALL_STATE(1792)] = 82921, + [SMALL_STATE(1793)] = 82949, + [SMALL_STATE(1794)] = 82977, + [SMALL_STATE(1795)] = 83005, + [SMALL_STATE(1796)] = 83033, + [SMALL_STATE(1797)] = 83081, + [SMALL_STATE(1798)] = 83109, + [SMALL_STATE(1799)] = 83137, + [SMALL_STATE(1800)] = 83165, + [SMALL_STATE(1801)] = 83213, + [SMALL_STATE(1802)] = 83261, + [SMALL_STATE(1803)] = 83309, + [SMALL_STATE(1804)] = 83357, + [SMALL_STATE(1805)] = 83385, + [SMALL_STATE(1806)] = 83433, + [SMALL_STATE(1807)] = 83481, + [SMALL_STATE(1808)] = 83509, + [SMALL_STATE(1809)] = 83557, + [SMALL_STATE(1810)] = 83605, + [SMALL_STATE(1811)] = 83653, + [SMALL_STATE(1812)] = 83701, + [SMALL_STATE(1813)] = 83749, + [SMALL_STATE(1814)] = 83797, + [SMALL_STATE(1815)] = 83829, + [SMALL_STATE(1816)] = 83877, + [SMALL_STATE(1817)] = 83905, + [SMALL_STATE(1818)] = 83933, + [SMALL_STATE(1819)] = 83981, + [SMALL_STATE(1820)] = 84029, + [SMALL_STATE(1821)] = 84057, + [SMALL_STATE(1822)] = 84105, + [SMALL_STATE(1823)] = 84153, + [SMALL_STATE(1824)] = 84181, + [SMALL_STATE(1825)] = 84229, + [SMALL_STATE(1826)] = 84257, + [SMALL_STATE(1827)] = 84285, + [SMALL_STATE(1828)] = 84313, + [SMALL_STATE(1829)] = 84341, + [SMALL_STATE(1830)] = 84369, + [SMALL_STATE(1831)] = 84397, + [SMALL_STATE(1832)] = 84425, + [SMALL_STATE(1833)] = 84473, + [SMALL_STATE(1834)] = 84521, + [SMALL_STATE(1835)] = 84569, + [SMALL_STATE(1836)] = 84597, + [SMALL_STATE(1837)] = 84625, + [SMALL_STATE(1838)] = 84673, + [SMALL_STATE(1839)] = 84701, + [SMALL_STATE(1840)] = 84729, + [SMALL_STATE(1841)] = 84757, + [SMALL_STATE(1842)] = 84785, + [SMALL_STATE(1843)] = 84813, + [SMALL_STATE(1844)] = 84841, + [SMALL_STATE(1845)] = 84889, + [SMALL_STATE(1846)] = 84937, + [SMALL_STATE(1847)] = 84965, + [SMALL_STATE(1848)] = 85013, + [SMALL_STATE(1849)] = 85041, + [SMALL_STATE(1850)] = 85069, + [SMALL_STATE(1851)] = 85097, + [SMALL_STATE(1852)] = 85145, + [SMALL_STATE(1853)] = 85173, + [SMALL_STATE(1854)] = 85201, + [SMALL_STATE(1855)] = 85229, + [SMALL_STATE(1856)] = 85277, + [SMALL_STATE(1857)] = 85305, + [SMALL_STATE(1858)] = 85353, + [SMALL_STATE(1859)] = 85381, + [SMALL_STATE(1860)] = 85409, + [SMALL_STATE(1861)] = 85441, + [SMALL_STATE(1862)] = 85489, + [SMALL_STATE(1863)] = 85537, + [SMALL_STATE(1864)] = 85585, + [SMALL_STATE(1865)] = 85613, + [SMALL_STATE(1866)] = 85661, + [SMALL_STATE(1867)] = 85709, + [SMALL_STATE(1868)] = 85757, + [SMALL_STATE(1869)] = 85785, + [SMALL_STATE(1870)] = 85813, + [SMALL_STATE(1871)] = 85861, + [SMALL_STATE(1872)] = 85909, + [SMALL_STATE(1873)] = 85937, + [SMALL_STATE(1874)] = 85965, + [SMALL_STATE(1875)] = 86011, + [SMALL_STATE(1876)] = 86059, + [SMALL_STATE(1877)] = 86087, + [SMALL_STATE(1878)] = 86115, + [SMALL_STATE(1879)] = 86143, + [SMALL_STATE(1880)] = 86171, + [SMALL_STATE(1881)] = 86198, + [SMALL_STATE(1882)] = 86243, + [SMALL_STATE(1883)] = 86278, + [SMALL_STATE(1884)] = 86323, + [SMALL_STATE(1885)] = 86358, + [SMALL_STATE(1886)] = 86385, + [SMALL_STATE(1887)] = 86420, + [SMALL_STATE(1888)] = 86455, + [SMALL_STATE(1889)] = 86500, + [SMALL_STATE(1890)] = 86545, + [SMALL_STATE(1891)] = 86572, + [SMALL_STATE(1892)] = 86607, + [SMALL_STATE(1893)] = 86642, + [SMALL_STATE(1894)] = 86677, + [SMALL_STATE(1895)] = 86704, + [SMALL_STATE(1896)] = 86739, + [SMALL_STATE(1897)] = 86774, + [SMALL_STATE(1898)] = 86801, + [SMALL_STATE(1899)] = 86836, + [SMALL_STATE(1900)] = 86863, + [SMALL_STATE(1901)] = 86890, + [SMALL_STATE(1902)] = 86925, + [SMALL_STATE(1903)] = 86970, + [SMALL_STATE(1904)] = 86997, + [SMALL_STATE(1905)] = 87032, + [SMALL_STATE(1906)] = 87059, + [SMALL_STATE(1907)] = 87094, + [SMALL_STATE(1908)] = 87139, + [SMALL_STATE(1909)] = 87184, + [SMALL_STATE(1910)] = 87229, + [SMALL_STATE(1911)] = 87264, + [SMALL_STATE(1912)] = 87309, + [SMALL_STATE(1913)] = 87344, + [SMALL_STATE(1914)] = 87389, + [SMALL_STATE(1915)] = 87434, [SMALL_STATE(1916)] = 87469, - [SMALL_STATE(1917)] = 87506, - [SMALL_STATE(1918)] = 87543, - [SMALL_STATE(1919)] = 87580, - [SMALL_STATE(1920)] = 87617, - [SMALL_STATE(1921)] = 87654, - [SMALL_STATE(1922)] = 87691, - [SMALL_STATE(1923)] = 87728, - [SMALL_STATE(1924)] = 87757, - [SMALL_STATE(1925)] = 87794, - [SMALL_STATE(1926)] = 87831, - [SMALL_STATE(1927)] = 87868, - [SMALL_STATE(1928)] = 87905, - [SMALL_STATE(1929)] = 87942, - [SMALL_STATE(1930)] = 87979, - [SMALL_STATE(1931)] = 88016, + [SMALL_STATE(1917)] = 87504, + [SMALL_STATE(1918)] = 87539, + [SMALL_STATE(1919)] = 87574, + [SMALL_STATE(1920)] = 87609, + [SMALL_STATE(1921)] = 87644, + [SMALL_STATE(1922)] = 87679, + [SMALL_STATE(1923)] = 87724, + [SMALL_STATE(1924)] = 87759, + [SMALL_STATE(1925)] = 87804, + [SMALL_STATE(1926)] = 87849, + [SMALL_STATE(1927)] = 87876, + [SMALL_STATE(1928)] = 87911, + [SMALL_STATE(1929)] = 87946, + [SMALL_STATE(1930)] = 87981, + [SMALL_STATE(1931)] = 88026, [SMALL_STATE(1932)] = 88053, - [SMALL_STATE(1933)] = 88090, - [SMALL_STATE(1934)] = 88127, - [SMALL_STATE(1935)] = 88164, - [SMALL_STATE(1936)] = 88201, - [SMALL_STATE(1937)] = 88238, - [SMALL_STATE(1938)] = 88275, - [SMALL_STATE(1939)] = 88312, - [SMALL_STATE(1940)] = 88349, - [SMALL_STATE(1941)] = 88386, - [SMALL_STATE(1942)] = 88423, - [SMALL_STATE(1943)] = 88460, - [SMALL_STATE(1944)] = 88497, - [SMALL_STATE(1945)] = 88534, - [SMALL_STATE(1946)] = 88571, - [SMALL_STATE(1947)] = 88608, - [SMALL_STATE(1948)] = 88645, - [SMALL_STATE(1949)] = 88682, - [SMALL_STATE(1950)] = 88719, - [SMALL_STATE(1951)] = 88756, - [SMALL_STATE(1952)] = 88793, - [SMALL_STATE(1953)] = 88830, - [SMALL_STATE(1954)] = 88867, - [SMALL_STATE(1955)] = 88904, - [SMALL_STATE(1956)] = 88941, - [SMALL_STATE(1957)] = 88970, - [SMALL_STATE(1958)] = 89007, - [SMALL_STATE(1959)] = 89044, - [SMALL_STATE(1960)] = 89081, - [SMALL_STATE(1961)] = 89118, - [SMALL_STATE(1962)] = 89155, - [SMALL_STATE(1963)] = 89192, - [SMALL_STATE(1964)] = 89221, - [SMALL_STATE(1965)] = 89258, - [SMALL_STATE(1966)] = 89287, - [SMALL_STATE(1967)] = 89324, - [SMALL_STATE(1968)] = 89361, - [SMALL_STATE(1969)] = 89398, - [SMALL_STATE(1970)] = 89435, - [SMALL_STATE(1971)] = 89472, - [SMALL_STATE(1972)] = 89496, - [SMALL_STATE(1973)] = 89520, - [SMALL_STATE(1974)] = 89544, - [SMALL_STATE(1975)] = 89568, - [SMALL_STATE(1976)] = 89592, - [SMALL_STATE(1977)] = 89620, - [SMALL_STATE(1978)] = 89644, - [SMALL_STATE(1979)] = 89668, - [SMALL_STATE(1980)] = 89692, - [SMALL_STATE(1981)] = 89716, - [SMALL_STATE(1982)] = 89740, - [SMALL_STATE(1983)] = 89764, - [SMALL_STATE(1984)] = 89788, - [SMALL_STATE(1985)] = 89812, - [SMALL_STATE(1986)] = 89836, - [SMALL_STATE(1987)] = 89864, - [SMALL_STATE(1988)] = 89888, - [SMALL_STATE(1989)] = 89912, - [SMALL_STATE(1990)] = 89936, - [SMALL_STATE(1991)] = 89960, - [SMALL_STATE(1992)] = 89984, - [SMALL_STATE(1993)] = 90008, - [SMALL_STATE(1994)] = 90032, - [SMALL_STATE(1995)] = 90056, - [SMALL_STATE(1996)] = 90080, - [SMALL_STATE(1997)] = 90104, - [SMALL_STATE(1998)] = 90128, - [SMALL_STATE(1999)] = 90161, - [SMALL_STATE(2000)] = 90194, - [SMALL_STATE(2001)] = 90217, - [SMALL_STATE(2002)] = 90243, - [SMALL_STATE(2003)] = 90269, - [SMALL_STATE(2004)] = 90295, - [SMALL_STATE(2005)] = 90327, - [SMALL_STATE(2006)] = 90353, - [SMALL_STATE(2007)] = 90374, - [SMALL_STATE(2008)] = 90403, - [SMALL_STATE(2009)] = 90424, - [SMALL_STATE(2010)] = 90453, - [SMALL_STATE(2011)] = 90478, - [SMALL_STATE(2012)] = 90507, - [SMALL_STATE(2013)] = 90528, - [SMALL_STATE(2014)] = 90557, - [SMALL_STATE(2015)] = 90578, - [SMALL_STATE(2016)] = 90599, - [SMALL_STATE(2017)] = 90628, - [SMALL_STATE(2018)] = 90657, - [SMALL_STATE(2019)] = 90678, - [SMALL_STATE(2020)] = 90707, - [SMALL_STATE(2021)] = 90736, - [SMALL_STATE(2022)] = 90757, - [SMALL_STATE(2023)] = 90786, - [SMALL_STATE(2024)] = 90815, - [SMALL_STATE(2025)] = 90836, - [SMALL_STATE(2026)] = 90857, - [SMALL_STATE(2027)] = 90886, - [SMALL_STATE(2028)] = 90907, - [SMALL_STATE(2029)] = 90928, - [SMALL_STATE(2030)] = 90949, - [SMALL_STATE(2031)] = 90978, - [SMALL_STATE(2032)] = 90999, - [SMALL_STATE(2033)] = 91028, - [SMALL_STATE(2034)] = 91049, - [SMALL_STATE(2035)] = 91070, - [SMALL_STATE(2036)] = 91091, - [SMALL_STATE(2037)] = 91112, - [SMALL_STATE(2038)] = 91133, - [SMALL_STATE(2039)] = 91162, - [SMALL_STATE(2040)] = 91191, - [SMALL_STATE(2041)] = 91212, - [SMALL_STATE(2042)] = 91237, - [SMALL_STATE(2043)] = 91258, - [SMALL_STATE(2044)] = 91287, - [SMALL_STATE(2045)] = 91316, - [SMALL_STATE(2046)] = 91345, - [SMALL_STATE(2047)] = 91374, - [SMALL_STATE(2048)] = 91403, - [SMALL_STATE(2049)] = 91432, - [SMALL_STATE(2050)] = 91453, - [SMALL_STATE(2051)] = 91474, - [SMALL_STATE(2052)] = 91495, - [SMALL_STATE(2053)] = 91516, - [SMALL_STATE(2054)] = 91537, - [SMALL_STATE(2055)] = 91566, - [SMALL_STATE(2056)] = 91595, - [SMALL_STATE(2057)] = 91624, - [SMALL_STATE(2058)] = 91646, - [SMALL_STATE(2059)] = 91674, - [SMALL_STATE(2060)] = 91698, - [SMALL_STATE(2061)] = 91722, - [SMALL_STATE(2062)] = 91746, - [SMALL_STATE(2063)] = 91768, - [SMALL_STATE(2064)] = 91792, - [SMALL_STATE(2065)] = 91816, - [SMALL_STATE(2066)] = 91838, - [SMALL_STATE(2067)] = 91862, - [SMALL_STATE(2068)] = 91890, - [SMALL_STATE(2069)] = 91918, - [SMALL_STATE(2070)] = 91942, - [SMALL_STATE(2071)] = 91966, - [SMALL_STATE(2072)] = 91994, - [SMALL_STATE(2073)] = 92018, - [SMALL_STATE(2074)] = 92042, - [SMALL_STATE(2075)] = 92062, - [SMALL_STATE(2076)] = 92090, - [SMALL_STATE(2077)] = 92112, - [SMALL_STATE(2078)] = 92140, - [SMALL_STATE(2079)] = 92168, - [SMALL_STATE(2080)] = 92192, - [SMALL_STATE(2081)] = 92220, - [SMALL_STATE(2082)] = 92248, - [SMALL_STATE(2083)] = 92272, - [SMALL_STATE(2084)] = 92300, - [SMALL_STATE(2085)] = 92322, - [SMALL_STATE(2086)] = 92350, - [SMALL_STATE(2087)] = 92374, - [SMALL_STATE(2088)] = 92398, - [SMALL_STATE(2089)] = 92426, - [SMALL_STATE(2090)] = 92454, - [SMALL_STATE(2091)] = 92478, - [SMALL_STATE(2092)] = 92502, - [SMALL_STATE(2093)] = 92526, - [SMALL_STATE(2094)] = 92550, - [SMALL_STATE(2095)] = 92574, - [SMALL_STATE(2096)] = 92598, - [SMALL_STATE(2097)] = 92622, - [SMALL_STATE(2098)] = 92644, - [SMALL_STATE(2099)] = 92668, - [SMALL_STATE(2100)] = 92692, - [SMALL_STATE(2101)] = 92716, - [SMALL_STATE(2102)] = 92740, - [SMALL_STATE(2103)] = 92764, - [SMALL_STATE(2104)] = 92788, - [SMALL_STATE(2105)] = 92816, - [SMALL_STATE(2106)] = 92844, - [SMALL_STATE(2107)] = 92872, - [SMALL_STATE(2108)] = 92896, - [SMALL_STATE(2109)] = 92920, - [SMALL_STATE(2110)] = 92944, - [SMALL_STATE(2111)] = 92972, - [SMALL_STATE(2112)] = 92996, - [SMALL_STATE(2113)] = 93024, - [SMALL_STATE(2114)] = 93048, - [SMALL_STATE(2115)] = 93072, - [SMALL_STATE(2116)] = 93100, - [SMALL_STATE(2117)] = 93124, - [SMALL_STATE(2118)] = 93148, - [SMALL_STATE(2119)] = 93172, - [SMALL_STATE(2120)] = 93196, - [SMALL_STATE(2121)] = 93224, - [SMALL_STATE(2122)] = 93248, - [SMALL_STATE(2123)] = 93272, - [SMALL_STATE(2124)] = 93300, - [SMALL_STATE(2125)] = 93324, - [SMALL_STATE(2126)] = 93352, - [SMALL_STATE(2127)] = 93380, - [SMALL_STATE(2128)] = 93404, - [SMALL_STATE(2129)] = 93432, - [SMALL_STATE(2130)] = 93456, - [SMALL_STATE(2131)] = 93480, - [SMALL_STATE(2132)] = 93504, - [SMALL_STATE(2133)] = 93528, - [SMALL_STATE(2134)] = 93556, - [SMALL_STATE(2135)] = 93580, - [SMALL_STATE(2136)] = 93608, - [SMALL_STATE(2137)] = 93632, - [SMALL_STATE(2138)] = 93656, - [SMALL_STATE(2139)] = 93675, - [SMALL_STATE(2140)] = 93694, - [SMALL_STATE(2141)] = 93713, - [SMALL_STATE(2142)] = 93734, - [SMALL_STATE(2143)] = 93753, - [SMALL_STATE(2144)] = 93772, - [SMALL_STATE(2145)] = 93791, - [SMALL_STATE(2146)] = 93811, - [SMALL_STATE(2147)] = 93841, - [SMALL_STATE(2148)] = 93871, - [SMALL_STATE(2149)] = 93901, - [SMALL_STATE(2150)] = 93925, - [SMALL_STATE(2151)] = 93955, - [SMALL_STATE(2152)] = 93979, - [SMALL_STATE(2153)] = 94009, - [SMALL_STATE(2154)] = 94039, - [SMALL_STATE(2155)] = 94069, - [SMALL_STATE(2156)] = 94093, - [SMALL_STATE(2157)] = 94121, - [SMALL_STATE(2158)] = 94151, - [SMALL_STATE(2159)] = 94181, - [SMALL_STATE(2160)] = 94211, - [SMALL_STATE(2161)] = 94235, - [SMALL_STATE(2162)] = 94265, - [SMALL_STATE(2163)] = 94295, - [SMALL_STATE(2164)] = 94325, - [SMALL_STATE(2165)] = 94349, - [SMALL_STATE(2166)] = 94379, - [SMALL_STATE(2167)] = 94409, - [SMALL_STATE(2168)] = 94439, - [SMALL_STATE(2169)] = 94469, - [SMALL_STATE(2170)] = 94497, - [SMALL_STATE(2171)] = 94521, - [SMALL_STATE(2172)] = 94545, - [SMALL_STATE(2173)] = 94575, - [SMALL_STATE(2174)] = 94605, - [SMALL_STATE(2175)] = 94629, - [SMALL_STATE(2176)] = 94659, - [SMALL_STATE(2177)] = 94683, - [SMALL_STATE(2178)] = 94707, - [SMALL_STATE(2179)] = 94731, - [SMALL_STATE(2180)] = 94761, - [SMALL_STATE(2181)] = 94785, - [SMALL_STATE(2182)] = 94815, - [SMALL_STATE(2183)] = 94845, - [SMALL_STATE(2184)] = 94869, - [SMALL_STATE(2185)] = 94893, - [SMALL_STATE(2186)] = 94917, - [SMALL_STATE(2187)] = 94947, - [SMALL_STATE(2188)] = 94977, - [SMALL_STATE(2189)] = 95007, - [SMALL_STATE(2190)] = 95037, - [SMALL_STATE(2191)] = 95061, - [SMALL_STATE(2192)] = 95091, - [SMALL_STATE(2193)] = 95121, - [SMALL_STATE(2194)] = 95149, - [SMALL_STATE(2195)] = 95179, - [SMALL_STATE(2196)] = 95203, - [SMALL_STATE(2197)] = 95227, - [SMALL_STATE(2198)] = 95251, - [SMALL_STATE(2199)] = 95281, - [SMALL_STATE(2200)] = 95311, - [SMALL_STATE(2201)] = 95341, - [SMALL_STATE(2202)] = 95365, - [SMALL_STATE(2203)] = 95395, - [SMALL_STATE(2204)] = 95425, - [SMALL_STATE(2205)] = 95455, - [SMALL_STATE(2206)] = 95479, - [SMALL_STATE(2207)] = 95509, - [SMALL_STATE(2208)] = 95533, - [SMALL_STATE(2209)] = 95563, - [SMALL_STATE(2210)] = 95587, - [SMALL_STATE(2211)] = 95617, - [SMALL_STATE(2212)] = 95647, - [SMALL_STATE(2213)] = 95671, - [SMALL_STATE(2214)] = 95701, - [SMALL_STATE(2215)] = 95731, - [SMALL_STATE(2216)] = 95761, - [SMALL_STATE(2217)] = 95785, - [SMALL_STATE(2218)] = 95815, - [SMALL_STATE(2219)] = 95845, - [SMALL_STATE(2220)] = 95873, - [SMALL_STATE(2221)] = 95897, - [SMALL_STATE(2222)] = 95927, - [SMALL_STATE(2223)] = 95957, - [SMALL_STATE(2224)] = 95987, - [SMALL_STATE(2225)] = 96017, - [SMALL_STATE(2226)] = 96045, - [SMALL_STATE(2227)] = 96065, - [SMALL_STATE(2228)] = 96089, - [SMALL_STATE(2229)] = 96113, - [SMALL_STATE(2230)] = 96129, - [SMALL_STATE(2231)] = 96153, - [SMALL_STATE(2232)] = 96169, - [SMALL_STATE(2233)] = 96193, - [SMALL_STATE(2234)] = 96209, - [SMALL_STATE(2235)] = 96233, - [SMALL_STATE(2236)] = 96257, - [SMALL_STATE(2237)] = 96273, - [SMALL_STATE(2238)] = 96294, - [SMALL_STATE(2239)] = 96309, - [SMALL_STATE(2240)] = 96330, - [SMALL_STATE(2241)] = 96345, - [SMALL_STATE(2242)] = 96360, - [SMALL_STATE(2243)] = 96375, - [SMALL_STATE(2244)] = 96390, - [SMALL_STATE(2245)] = 96405, - [SMALL_STATE(2246)] = 96420, - [SMALL_STATE(2247)] = 96435, - [SMALL_STATE(2248)] = 96450, - [SMALL_STATE(2249)] = 96465, - [SMALL_STATE(2250)] = 96480, - [SMALL_STATE(2251)] = 96495, - [SMALL_STATE(2252)] = 96510, - [SMALL_STATE(2253)] = 96525, - [SMALL_STATE(2254)] = 96540, - [SMALL_STATE(2255)] = 96555, - [SMALL_STATE(2256)] = 96570, - [SMALL_STATE(2257)] = 96585, - [SMALL_STATE(2258)] = 96600, - [SMALL_STATE(2259)] = 96615, - [SMALL_STATE(2260)] = 96630, - [SMALL_STATE(2261)] = 96645, - [SMALL_STATE(2262)] = 96666, - [SMALL_STATE(2263)] = 96685, - [SMALL_STATE(2264)] = 96706, - [SMALL_STATE(2265)] = 96725, - [SMALL_STATE(2266)] = 96744, - [SMALL_STATE(2267)] = 96759, - [SMALL_STATE(2268)] = 96774, - [SMALL_STATE(2269)] = 96788, - [SMALL_STATE(2270)] = 96808, - [SMALL_STATE(2271)] = 96822, - [SMALL_STATE(2272)] = 96836, - [SMALL_STATE(2273)] = 96850, - [SMALL_STATE(2274)] = 96864, - [SMALL_STATE(2275)] = 96878, - [SMALL_STATE(2276)] = 96892, - [SMALL_STATE(2277)] = 96906, - [SMALL_STATE(2278)] = 96920, - [SMALL_STATE(2279)] = 96934, - [SMALL_STATE(2280)] = 96948, - [SMALL_STATE(2281)] = 96962, - [SMALL_STATE(2282)] = 96976, - [SMALL_STATE(2283)] = 96990, - [SMALL_STATE(2284)] = 97004, - [SMALL_STATE(2285)] = 97018, - [SMALL_STATE(2286)] = 97032, - [SMALL_STATE(2287)] = 97046, - [SMALL_STATE(2288)] = 97060, - [SMALL_STATE(2289)] = 97074, - [SMALL_STATE(2290)] = 97088, - [SMALL_STATE(2291)] = 97108, - [SMALL_STATE(2292)] = 97122, - [SMALL_STATE(2293)] = 97142, - [SMALL_STATE(2294)] = 97156, - [SMALL_STATE(2295)] = 97170, - [SMALL_STATE(2296)] = 97184, - [SMALL_STATE(2297)] = 97198, - [SMALL_STATE(2298)] = 97212, - [SMALL_STATE(2299)] = 97226, - [SMALL_STATE(2300)] = 97240, - [SMALL_STATE(2301)] = 97254, - [SMALL_STATE(2302)] = 97268, - [SMALL_STATE(2303)] = 97280, - [SMALL_STATE(2304)] = 97294, - [SMALL_STATE(2305)] = 97308, - [SMALL_STATE(2306)] = 97322, - [SMALL_STATE(2307)] = 97336, - [SMALL_STATE(2308)] = 97350, - [SMALL_STATE(2309)] = 97370, - [SMALL_STATE(2310)] = 97384, - [SMALL_STATE(2311)] = 97398, - [SMALL_STATE(2312)] = 97412, - [SMALL_STATE(2313)] = 97424, - [SMALL_STATE(2314)] = 97438, - [SMALL_STATE(2315)] = 97452, - [SMALL_STATE(2316)] = 97466, - [SMALL_STATE(2317)] = 97480, - [SMALL_STATE(2318)] = 97494, - [SMALL_STATE(2319)] = 97508, - [SMALL_STATE(2320)] = 97525, - [SMALL_STATE(2321)] = 97544, - [SMALL_STATE(2322)] = 97559, - [SMALL_STATE(2323)] = 97576, - [SMALL_STATE(2324)] = 97593, - [SMALL_STATE(2325)] = 97610, - [SMALL_STATE(2326)] = 97629, - [SMALL_STATE(2327)] = 97646, - [SMALL_STATE(2328)] = 97663, - [SMALL_STATE(2329)] = 97680, - [SMALL_STATE(2330)] = 97695, - [SMALL_STATE(2331)] = 97710, - [SMALL_STATE(2332)] = 97725, - [SMALL_STATE(2333)] = 97740, - [SMALL_STATE(2334)] = 97753, - [SMALL_STATE(2335)] = 97770, - [SMALL_STATE(2336)] = 97785, - [SMALL_STATE(2337)] = 97800, - [SMALL_STATE(2338)] = 97815, - [SMALL_STATE(2339)] = 97830, - [SMALL_STATE(2340)] = 97847, - [SMALL_STATE(2341)] = 97864, - [SMALL_STATE(2342)] = 97879, - [SMALL_STATE(2343)] = 97896, - [SMALL_STATE(2344)] = 97915, - [SMALL_STATE(2345)] = 97934, - [SMALL_STATE(2346)] = 97951, - [SMALL_STATE(2347)] = 97966, - [SMALL_STATE(2348)] = 97979, - [SMALL_STATE(2349)] = 97996, - [SMALL_STATE(2350)] = 98011, - [SMALL_STATE(2351)] = 98028, - [SMALL_STATE(2352)] = 98045, - [SMALL_STATE(2353)] = 98058, - [SMALL_STATE(2354)] = 98075, - [SMALL_STATE(2355)] = 98090, - [SMALL_STATE(2356)] = 98105, - [SMALL_STATE(2357)] = 98119, - [SMALL_STATE(2358)] = 98135, - [SMALL_STATE(2359)] = 98149, - [SMALL_STATE(2360)] = 98161, - [SMALL_STATE(2361)] = 98173, - [SMALL_STATE(2362)] = 98187, - [SMALL_STATE(2363)] = 98199, - [SMALL_STATE(2364)] = 98213, - [SMALL_STATE(2365)] = 98225, - [SMALL_STATE(2366)] = 98241, - [SMALL_STATE(2367)] = 98255, - [SMALL_STATE(2368)] = 98269, - [SMALL_STATE(2369)] = 98283, - [SMALL_STATE(2370)] = 98297, - [SMALL_STATE(2371)] = 98311, - [SMALL_STATE(2372)] = 98325, - [SMALL_STATE(2373)] = 98337, - [SMALL_STATE(2374)] = 98349, - [SMALL_STATE(2375)] = 98363, - [SMALL_STATE(2376)] = 98377, - [SMALL_STATE(2377)] = 98389, - [SMALL_STATE(2378)] = 98403, - [SMALL_STATE(2379)] = 98417, - [SMALL_STATE(2380)] = 98429, - [SMALL_STATE(2381)] = 98441, - [SMALL_STATE(2382)] = 98455, - [SMALL_STATE(2383)] = 98467, - [SMALL_STATE(2384)] = 98481, - [SMALL_STATE(2385)] = 98495, - [SMALL_STATE(2386)] = 98509, - [SMALL_STATE(2387)] = 98523, - [SMALL_STATE(2388)] = 98537, - [SMALL_STATE(2389)] = 98553, - [SMALL_STATE(2390)] = 98567, - [SMALL_STATE(2391)] = 98581, - [SMALL_STATE(2392)] = 98593, - [SMALL_STATE(2393)] = 98607, - [SMALL_STATE(2394)] = 98620, - [SMALL_STATE(2395)] = 98633, - [SMALL_STATE(2396)] = 98646, - [SMALL_STATE(2397)] = 98659, - [SMALL_STATE(2398)] = 98672, - [SMALL_STATE(2399)] = 98685, - [SMALL_STATE(2400)] = 98698, - [SMALL_STATE(2401)] = 98711, - [SMALL_STATE(2402)] = 98724, - [SMALL_STATE(2403)] = 98737, - [SMALL_STATE(2404)] = 98750, - [SMALL_STATE(2405)] = 98763, - [SMALL_STATE(2406)] = 98776, - [SMALL_STATE(2407)] = 98789, - [SMALL_STATE(2408)] = 98802, - [SMALL_STATE(2409)] = 98815, - [SMALL_STATE(2410)] = 98828, - [SMALL_STATE(2411)] = 98841, - [SMALL_STATE(2412)] = 98854, - [SMALL_STATE(2413)] = 98867, - [SMALL_STATE(2414)] = 98880, - [SMALL_STATE(2415)] = 98893, - [SMALL_STATE(2416)] = 98906, - [SMALL_STATE(2417)] = 98917, - [SMALL_STATE(2418)] = 98930, - [SMALL_STATE(2419)] = 98943, - [SMALL_STATE(2420)] = 98956, - [SMALL_STATE(2421)] = 98969, - [SMALL_STATE(2422)] = 98982, - [SMALL_STATE(2423)] = 98995, - [SMALL_STATE(2424)] = 99008, - [SMALL_STATE(2425)] = 99021, - [SMALL_STATE(2426)] = 99034, - [SMALL_STATE(2427)] = 99047, - [SMALL_STATE(2428)] = 99058, - [SMALL_STATE(2429)] = 99071, - [SMALL_STATE(2430)] = 99084, - [SMALL_STATE(2431)] = 99095, - [SMALL_STATE(2432)] = 99108, - [SMALL_STATE(2433)] = 99121, - [SMALL_STATE(2434)] = 99134, - [SMALL_STATE(2435)] = 99147, - [SMALL_STATE(2436)] = 99160, - [SMALL_STATE(2437)] = 99171, - [SMALL_STATE(2438)] = 99184, - [SMALL_STATE(2439)] = 99195, - [SMALL_STATE(2440)] = 99208, - [SMALL_STATE(2441)] = 99221, - [SMALL_STATE(2442)] = 99234, - [SMALL_STATE(2443)] = 99247, - [SMALL_STATE(2444)] = 99260, - [SMALL_STATE(2445)] = 99271, - [SMALL_STATE(2446)] = 99284, - [SMALL_STATE(2447)] = 99297, - [SMALL_STATE(2448)] = 99308, - [SMALL_STATE(2449)] = 99321, - [SMALL_STATE(2450)] = 99334, - [SMALL_STATE(2451)] = 99347, - [SMALL_STATE(2452)] = 99360, - [SMALL_STATE(2453)] = 99371, - [SMALL_STATE(2454)] = 99384, - [SMALL_STATE(2455)] = 99395, - [SMALL_STATE(2456)] = 99408, - [SMALL_STATE(2457)] = 99421, - [SMALL_STATE(2458)] = 99434, - [SMALL_STATE(2459)] = 99447, - [SMALL_STATE(2460)] = 99460, - [SMALL_STATE(2461)] = 99473, - [SMALL_STATE(2462)] = 99486, - [SMALL_STATE(2463)] = 99499, - [SMALL_STATE(2464)] = 99512, - [SMALL_STATE(2465)] = 99525, - [SMALL_STATE(2466)] = 99538, - [SMALL_STATE(2467)] = 99551, - [SMALL_STATE(2468)] = 99564, - [SMALL_STATE(2469)] = 99577, - [SMALL_STATE(2470)] = 99590, - [SMALL_STATE(2471)] = 99603, - [SMALL_STATE(2472)] = 99616, - [SMALL_STATE(2473)] = 99629, - [SMALL_STATE(2474)] = 99642, - [SMALL_STATE(2475)] = 99655, - [SMALL_STATE(2476)] = 99668, - [SMALL_STATE(2477)] = 99681, - [SMALL_STATE(2478)] = 99694, - [SMALL_STATE(2479)] = 99707, - [SMALL_STATE(2480)] = 99720, - [SMALL_STATE(2481)] = 99733, - [SMALL_STATE(2482)] = 99746, - [SMALL_STATE(2483)] = 99759, - [SMALL_STATE(2484)] = 99772, - [SMALL_STATE(2485)] = 99785, - [SMALL_STATE(2486)] = 99798, - [SMALL_STATE(2487)] = 99811, - [SMALL_STATE(2488)] = 99824, - [SMALL_STATE(2489)] = 99837, - [SMALL_STATE(2490)] = 99850, - [SMALL_STATE(2491)] = 99863, - [SMALL_STATE(2492)] = 99876, - [SMALL_STATE(2493)] = 99887, - [SMALL_STATE(2494)] = 99900, - [SMALL_STATE(2495)] = 99913, - [SMALL_STATE(2496)] = 99926, - [SMALL_STATE(2497)] = 99939, - [SMALL_STATE(2498)] = 99952, - [SMALL_STATE(2499)] = 99965, - [SMALL_STATE(2500)] = 99978, - [SMALL_STATE(2501)] = 99991, - [SMALL_STATE(2502)] = 100004, - [SMALL_STATE(2503)] = 100017, - [SMALL_STATE(2504)] = 100030, - [SMALL_STATE(2505)] = 100043, - [SMALL_STATE(2506)] = 100056, - [SMALL_STATE(2507)] = 100067, - [SMALL_STATE(2508)] = 100080, - [SMALL_STATE(2509)] = 100093, - [SMALL_STATE(2510)] = 100106, - [SMALL_STATE(2511)] = 100119, - [SMALL_STATE(2512)] = 100132, - [SMALL_STATE(2513)] = 100143, - [SMALL_STATE(2514)] = 100156, - [SMALL_STATE(2515)] = 100169, - [SMALL_STATE(2516)] = 100182, - [SMALL_STATE(2517)] = 100195, - [SMALL_STATE(2518)] = 100208, - [SMALL_STATE(2519)] = 100221, - [SMALL_STATE(2520)] = 100234, - [SMALL_STATE(2521)] = 100247, - [SMALL_STATE(2522)] = 100260, - [SMALL_STATE(2523)] = 100268, - [SMALL_STATE(2524)] = 100276, - [SMALL_STATE(2525)] = 100286, - [SMALL_STATE(2526)] = 100294, - [SMALL_STATE(2527)] = 100304, - [SMALL_STATE(2528)] = 100314, - [SMALL_STATE(2529)] = 100324, - [SMALL_STATE(2530)] = 100334, - [SMALL_STATE(2531)] = 100344, - [SMALL_STATE(2532)] = 100354, - [SMALL_STATE(2533)] = 100364, - [SMALL_STATE(2534)] = 100374, - [SMALL_STATE(2535)] = 100384, - [SMALL_STATE(2536)] = 100394, - [SMALL_STATE(2537)] = 100404, - [SMALL_STATE(2538)] = 100414, - [SMALL_STATE(2539)] = 100424, - [SMALL_STATE(2540)] = 100432, - [SMALL_STATE(2541)] = 100442, - [SMALL_STATE(2542)] = 100450, - [SMALL_STATE(2543)] = 100460, - [SMALL_STATE(2544)] = 100470, - [SMALL_STATE(2545)] = 100480, - [SMALL_STATE(2546)] = 100490, - [SMALL_STATE(2547)] = 100498, - [SMALL_STATE(2548)] = 100508, - [SMALL_STATE(2549)] = 100518, - [SMALL_STATE(2550)] = 100526, - [SMALL_STATE(2551)] = 100536, - [SMALL_STATE(2552)] = 100546, - [SMALL_STATE(2553)] = 100556, - [SMALL_STATE(2554)] = 100566, - [SMALL_STATE(2555)] = 100576, - [SMALL_STATE(2556)] = 100586, - [SMALL_STATE(2557)] = 100596, - [SMALL_STATE(2558)] = 100604, - [SMALL_STATE(2559)] = 100612, - [SMALL_STATE(2560)] = 100622, - [SMALL_STATE(2561)] = 100630, - [SMALL_STATE(2562)] = 100640, - [SMALL_STATE(2563)] = 100650, - [SMALL_STATE(2564)] = 100660, - [SMALL_STATE(2565)] = 100668, - [SMALL_STATE(2566)] = 100678, - [SMALL_STATE(2567)] = 100686, - [SMALL_STATE(2568)] = 100696, - [SMALL_STATE(2569)] = 100704, - [SMALL_STATE(2570)] = 100714, - [SMALL_STATE(2571)] = 100722, - [SMALL_STATE(2572)] = 100732, - [SMALL_STATE(2573)] = 100742, - [SMALL_STATE(2574)] = 100752, - [SMALL_STATE(2575)] = 100760, - [SMALL_STATE(2576)] = 100770, - [SMALL_STATE(2577)] = 100780, - [SMALL_STATE(2578)] = 100788, - [SMALL_STATE(2579)] = 100798, - [SMALL_STATE(2580)] = 100806, - [SMALL_STATE(2581)] = 100814, - [SMALL_STATE(2582)] = 100824, - [SMALL_STATE(2583)] = 100832, - [SMALL_STATE(2584)] = 100842, - [SMALL_STATE(2585)] = 100852, - [SMALL_STATE(2586)] = 100862, - [SMALL_STATE(2587)] = 100870, - [SMALL_STATE(2588)] = 100878, - [SMALL_STATE(2589)] = 100886, - [SMALL_STATE(2590)] = 100896, - [SMALL_STATE(2591)] = 100906, - [SMALL_STATE(2592)] = 100916, - [SMALL_STATE(2593)] = 100926, - [SMALL_STATE(2594)] = 100934, - [SMALL_STATE(2595)] = 100944, - [SMALL_STATE(2596)] = 100954, - [SMALL_STATE(2597)] = 100964, - [SMALL_STATE(2598)] = 100972, - [SMALL_STATE(2599)] = 100980, - [SMALL_STATE(2600)] = 100988, - [SMALL_STATE(2601)] = 100996, - [SMALL_STATE(2602)] = 101004, - [SMALL_STATE(2603)] = 101014, - [SMALL_STATE(2604)] = 101024, - [SMALL_STATE(2605)] = 101034, - [SMALL_STATE(2606)] = 101044, - [SMALL_STATE(2607)] = 101054, - [SMALL_STATE(2608)] = 101062, - [SMALL_STATE(2609)] = 101070, - [SMALL_STATE(2610)] = 101078, - [SMALL_STATE(2611)] = 101086, - [SMALL_STATE(2612)] = 101096, - [SMALL_STATE(2613)] = 101104, - [SMALL_STATE(2614)] = 101112, - [SMALL_STATE(2615)] = 101122, - [SMALL_STATE(2616)] = 101132, - [SMALL_STATE(2617)] = 101140, - [SMALL_STATE(2618)] = 101150, - [SMALL_STATE(2619)] = 101158, - [SMALL_STATE(2620)] = 101166, - [SMALL_STATE(2621)] = 101176, - [SMALL_STATE(2622)] = 101186, - [SMALL_STATE(2623)] = 101196, - [SMALL_STATE(2624)] = 101204, - [SMALL_STATE(2625)] = 101214, - [SMALL_STATE(2626)] = 101224, - [SMALL_STATE(2627)] = 101234, - [SMALL_STATE(2628)] = 101241, - [SMALL_STATE(2629)] = 101248, - [SMALL_STATE(2630)] = 101255, - [SMALL_STATE(2631)] = 101262, - [SMALL_STATE(2632)] = 101269, - [SMALL_STATE(2633)] = 101276, - [SMALL_STATE(2634)] = 101283, - [SMALL_STATE(2635)] = 101290, - [SMALL_STATE(2636)] = 101297, - [SMALL_STATE(2637)] = 101304, - [SMALL_STATE(2638)] = 101311, - [SMALL_STATE(2639)] = 101318, - [SMALL_STATE(2640)] = 101325, - [SMALL_STATE(2641)] = 101332, - [SMALL_STATE(2642)] = 101339, - [SMALL_STATE(2643)] = 101346, - [SMALL_STATE(2644)] = 101353, - [SMALL_STATE(2645)] = 101360, - [SMALL_STATE(2646)] = 101367, - [SMALL_STATE(2647)] = 101374, - [SMALL_STATE(2648)] = 101381, - [SMALL_STATE(2649)] = 101388, - [SMALL_STATE(2650)] = 101395, - [SMALL_STATE(2651)] = 101402, - [SMALL_STATE(2652)] = 101409, - [SMALL_STATE(2653)] = 101416, - [SMALL_STATE(2654)] = 101423, - [SMALL_STATE(2655)] = 101430, - [SMALL_STATE(2656)] = 101437, - [SMALL_STATE(2657)] = 101444, - [SMALL_STATE(2658)] = 101451, - [SMALL_STATE(2659)] = 101458, - [SMALL_STATE(2660)] = 101465, - [SMALL_STATE(2661)] = 101472, - [SMALL_STATE(2662)] = 101479, - [SMALL_STATE(2663)] = 101486, - [SMALL_STATE(2664)] = 101493, - [SMALL_STATE(2665)] = 101500, - [SMALL_STATE(2666)] = 101507, - [SMALL_STATE(2667)] = 101514, - [SMALL_STATE(2668)] = 101521, - [SMALL_STATE(2669)] = 101528, - [SMALL_STATE(2670)] = 101535, - [SMALL_STATE(2671)] = 101542, - [SMALL_STATE(2672)] = 101549, - [SMALL_STATE(2673)] = 101556, - [SMALL_STATE(2674)] = 101563, - [SMALL_STATE(2675)] = 101570, - [SMALL_STATE(2676)] = 101577, - [SMALL_STATE(2677)] = 101584, - [SMALL_STATE(2678)] = 101591, - [SMALL_STATE(2679)] = 101598, - [SMALL_STATE(2680)] = 101605, - [SMALL_STATE(2681)] = 101612, - [SMALL_STATE(2682)] = 101619, - [SMALL_STATE(2683)] = 101626, - [SMALL_STATE(2684)] = 101633, - [SMALL_STATE(2685)] = 101640, - [SMALL_STATE(2686)] = 101647, - [SMALL_STATE(2687)] = 101654, - [SMALL_STATE(2688)] = 101661, - [SMALL_STATE(2689)] = 101668, - [SMALL_STATE(2690)] = 101675, - [SMALL_STATE(2691)] = 101682, - [SMALL_STATE(2692)] = 101689, - [SMALL_STATE(2693)] = 101696, - [SMALL_STATE(2694)] = 101703, - [SMALL_STATE(2695)] = 101710, - [SMALL_STATE(2696)] = 101717, - [SMALL_STATE(2697)] = 101724, - [SMALL_STATE(2698)] = 101731, - [SMALL_STATE(2699)] = 101738, - [SMALL_STATE(2700)] = 101745, - [SMALL_STATE(2701)] = 101752, - [SMALL_STATE(2702)] = 101759, - [SMALL_STATE(2703)] = 101766, - [SMALL_STATE(2704)] = 101773, - [SMALL_STATE(2705)] = 101780, - [SMALL_STATE(2706)] = 101787, - [SMALL_STATE(2707)] = 101794, - [SMALL_STATE(2708)] = 101801, - [SMALL_STATE(2709)] = 101808, - [SMALL_STATE(2710)] = 101815, - [SMALL_STATE(2711)] = 101822, - [SMALL_STATE(2712)] = 101829, - [SMALL_STATE(2713)] = 101836, - [SMALL_STATE(2714)] = 101843, - [SMALL_STATE(2715)] = 101850, - [SMALL_STATE(2716)] = 101857, - [SMALL_STATE(2717)] = 101864, - [SMALL_STATE(2718)] = 101871, - [SMALL_STATE(2719)] = 101878, - [SMALL_STATE(2720)] = 101885, - [SMALL_STATE(2721)] = 101892, - [SMALL_STATE(2722)] = 101899, - [SMALL_STATE(2723)] = 101906, - [SMALL_STATE(2724)] = 101913, - [SMALL_STATE(2725)] = 101920, - [SMALL_STATE(2726)] = 101927, - [SMALL_STATE(2727)] = 101934, - [SMALL_STATE(2728)] = 101941, - [SMALL_STATE(2729)] = 101948, - [SMALL_STATE(2730)] = 101955, - [SMALL_STATE(2731)] = 101962, - [SMALL_STATE(2732)] = 101969, - [SMALL_STATE(2733)] = 101976, - [SMALL_STATE(2734)] = 101983, - [SMALL_STATE(2735)] = 101990, - [SMALL_STATE(2736)] = 101997, - [SMALL_STATE(2737)] = 102004, - [SMALL_STATE(2738)] = 102011, - [SMALL_STATE(2739)] = 102018, - [SMALL_STATE(2740)] = 102025, - [SMALL_STATE(2741)] = 102032, - [SMALL_STATE(2742)] = 102039, - [SMALL_STATE(2743)] = 102046, - [SMALL_STATE(2744)] = 102053, - [SMALL_STATE(2745)] = 102060, - [SMALL_STATE(2746)] = 102067, - [SMALL_STATE(2747)] = 102074, - [SMALL_STATE(2748)] = 102081, - [SMALL_STATE(2749)] = 102088, - [SMALL_STATE(2750)] = 102095, - [SMALL_STATE(2751)] = 102102, - [SMALL_STATE(2752)] = 102109, - [SMALL_STATE(2753)] = 102116, - [SMALL_STATE(2754)] = 102123, - [SMALL_STATE(2755)] = 102130, - [SMALL_STATE(2756)] = 102137, - [SMALL_STATE(2757)] = 102144, - [SMALL_STATE(2758)] = 102151, - [SMALL_STATE(2759)] = 102158, - [SMALL_STATE(2760)] = 102165, - [SMALL_STATE(2761)] = 102172, - [SMALL_STATE(2762)] = 102179, - [SMALL_STATE(2763)] = 102186, - [SMALL_STATE(2764)] = 102193, - [SMALL_STATE(2765)] = 102200, - [SMALL_STATE(2766)] = 102207, - [SMALL_STATE(2767)] = 102214, - [SMALL_STATE(2768)] = 102221, - [SMALL_STATE(2769)] = 102228, - [SMALL_STATE(2770)] = 102235, - [SMALL_STATE(2771)] = 102242, - [SMALL_STATE(2772)] = 102249, - [SMALL_STATE(2773)] = 102256, - [SMALL_STATE(2774)] = 102263, - [SMALL_STATE(2775)] = 102270, - [SMALL_STATE(2776)] = 102277, - [SMALL_STATE(2777)] = 102284, - [SMALL_STATE(2778)] = 102291, - [SMALL_STATE(2779)] = 102298, - [SMALL_STATE(2780)] = 102305, - [SMALL_STATE(2781)] = 102312, - [SMALL_STATE(2782)] = 102319, - [SMALL_STATE(2783)] = 102326, - [SMALL_STATE(2784)] = 102333, - [SMALL_STATE(2785)] = 102340, - [SMALL_STATE(2786)] = 102347, - [SMALL_STATE(2787)] = 102354, - [SMALL_STATE(2788)] = 102361, - [SMALL_STATE(2789)] = 102368, - [SMALL_STATE(2790)] = 102375, - [SMALL_STATE(2791)] = 102382, - [SMALL_STATE(2792)] = 102389, - [SMALL_STATE(2793)] = 102396, - [SMALL_STATE(2794)] = 102403, - [SMALL_STATE(2795)] = 102410, - [SMALL_STATE(2796)] = 102417, - [SMALL_STATE(2797)] = 102424, + [SMALL_STATE(1933)] = 88098, + [SMALL_STATE(1934)] = 88140, + [SMALL_STATE(1935)] = 88176, + [SMALL_STATE(1936)] = 88218, + [SMALL_STATE(1937)] = 88247, + [SMALL_STATE(1938)] = 88284, + [SMALL_STATE(1939)] = 88321, + [SMALL_STATE(1940)] = 88358, + [SMALL_STATE(1941)] = 88395, + [SMALL_STATE(1942)] = 88432, + [SMALL_STATE(1943)] = 88469, + [SMALL_STATE(1944)] = 88506, + [SMALL_STATE(1945)] = 88543, + [SMALL_STATE(1946)] = 88580, + [SMALL_STATE(1947)] = 88617, + [SMALL_STATE(1948)] = 88654, + [SMALL_STATE(1949)] = 88691, + [SMALL_STATE(1950)] = 88728, + [SMALL_STATE(1951)] = 88765, + [SMALL_STATE(1952)] = 88802, + [SMALL_STATE(1953)] = 88839, + [SMALL_STATE(1954)] = 88876, + [SMALL_STATE(1955)] = 88913, + [SMALL_STATE(1956)] = 88950, + [SMALL_STATE(1957)] = 88987, + [SMALL_STATE(1958)] = 89024, + [SMALL_STATE(1959)] = 89061, + [SMALL_STATE(1960)] = 89098, + [SMALL_STATE(1961)] = 89135, + [SMALL_STATE(1962)] = 89172, + [SMALL_STATE(1963)] = 89209, + [SMALL_STATE(1964)] = 89246, + [SMALL_STATE(1965)] = 89283, + [SMALL_STATE(1966)] = 89320, + [SMALL_STATE(1967)] = 89357, + [SMALL_STATE(1968)] = 89394, + [SMALL_STATE(1969)] = 89431, + [SMALL_STATE(1970)] = 89468, + [SMALL_STATE(1971)] = 89505, + [SMALL_STATE(1972)] = 89542, + [SMALL_STATE(1973)] = 89579, + [SMALL_STATE(1974)] = 89616, + [SMALL_STATE(1975)] = 89653, + [SMALL_STATE(1976)] = 89682, + [SMALL_STATE(1977)] = 89719, + [SMALL_STATE(1978)] = 89756, + [SMALL_STATE(1979)] = 89785, + [SMALL_STATE(1980)] = 89822, + [SMALL_STATE(1981)] = 89851, + [SMALL_STATE(1982)] = 89888, + [SMALL_STATE(1983)] = 89925, + [SMALL_STATE(1984)] = 89962, + [SMALL_STATE(1985)] = 89999, + [SMALL_STATE(1986)] = 90036, + [SMALL_STATE(1987)] = 90073, + [SMALL_STATE(1988)] = 90110, + [SMALL_STATE(1989)] = 90147, + [SMALL_STATE(1990)] = 90184, + [SMALL_STATE(1991)] = 90221, + [SMALL_STATE(1992)] = 90245, + [SMALL_STATE(1993)] = 90269, + [SMALL_STATE(1994)] = 90293, + [SMALL_STATE(1995)] = 90321, + [SMALL_STATE(1996)] = 90345, + [SMALL_STATE(1997)] = 90369, + [SMALL_STATE(1998)] = 90393, + [SMALL_STATE(1999)] = 90417, + [SMALL_STATE(2000)] = 90441, + [SMALL_STATE(2001)] = 90465, + [SMALL_STATE(2002)] = 90489, + [SMALL_STATE(2003)] = 90517, + [SMALL_STATE(2004)] = 90541, + [SMALL_STATE(2005)] = 90565, + [SMALL_STATE(2006)] = 90589, + [SMALL_STATE(2007)] = 90613, + [SMALL_STATE(2008)] = 90637, + [SMALL_STATE(2009)] = 90661, + [SMALL_STATE(2010)] = 90685, + [SMALL_STATE(2011)] = 90709, + [SMALL_STATE(2012)] = 90733, + [SMALL_STATE(2013)] = 90757, + [SMALL_STATE(2014)] = 90781, + [SMALL_STATE(2015)] = 90805, + [SMALL_STATE(2016)] = 90829, + [SMALL_STATE(2017)] = 90853, + [SMALL_STATE(2018)] = 90877, + [SMALL_STATE(2019)] = 90901, + [SMALL_STATE(2020)] = 90934, + [SMALL_STATE(2021)] = 90957, + [SMALL_STATE(2022)] = 90990, + [SMALL_STATE(2023)] = 91016, + [SMALL_STATE(2024)] = 91042, + [SMALL_STATE(2025)] = 91068, + [SMALL_STATE(2026)] = 91100, + [SMALL_STATE(2027)] = 91126, + [SMALL_STATE(2028)] = 91157, + [SMALL_STATE(2029)] = 91188, + [SMALL_STATE(2030)] = 91219, + [SMALL_STATE(2031)] = 91248, + [SMALL_STATE(2032)] = 91269, + [SMALL_STATE(2033)] = 91298, + [SMALL_STATE(2034)] = 91319, + [SMALL_STATE(2035)] = 91350, + [SMALL_STATE(2036)] = 91381, + [SMALL_STATE(2037)] = 91410, + [SMALL_STATE(2038)] = 91431, + [SMALL_STATE(2039)] = 91452, + [SMALL_STATE(2040)] = 91473, + [SMALL_STATE(2041)] = 91494, + [SMALL_STATE(2042)] = 91515, + [SMALL_STATE(2043)] = 91546, + [SMALL_STATE(2044)] = 91577, + [SMALL_STATE(2045)] = 91606, + [SMALL_STATE(2046)] = 91627, + [SMALL_STATE(2047)] = 91648, + [SMALL_STATE(2048)] = 91669, + [SMALL_STATE(2049)] = 91690, + [SMALL_STATE(2050)] = 91711, + [SMALL_STATE(2051)] = 91740, + [SMALL_STATE(2052)] = 91771, + [SMALL_STATE(2053)] = 91802, + [SMALL_STATE(2054)] = 91833, + [SMALL_STATE(2055)] = 91862, + [SMALL_STATE(2056)] = 91893, + [SMALL_STATE(2057)] = 91922, + [SMALL_STATE(2058)] = 91951, + [SMALL_STATE(2059)] = 91980, + [SMALL_STATE(2060)] = 92011, + [SMALL_STATE(2061)] = 92040, + [SMALL_STATE(2062)] = 92061, + [SMALL_STATE(2063)] = 92092, + [SMALL_STATE(2064)] = 92123, + [SMALL_STATE(2065)] = 92152, + [SMALL_STATE(2066)] = 92181, + [SMALL_STATE(2067)] = 92212, + [SMALL_STATE(2068)] = 92243, + [SMALL_STATE(2069)] = 92274, + [SMALL_STATE(2070)] = 92303, + [SMALL_STATE(2071)] = 92332, + [SMALL_STATE(2072)] = 92363, + [SMALL_STATE(2073)] = 92392, + [SMALL_STATE(2074)] = 92413, + [SMALL_STATE(2075)] = 92434, + [SMALL_STATE(2076)] = 92455, + [SMALL_STATE(2077)] = 92476, + [SMALL_STATE(2078)] = 92497, + [SMALL_STATE(2079)] = 92528, + [SMALL_STATE(2080)] = 92559, + [SMALL_STATE(2081)] = 92580, + [SMALL_STATE(2082)] = 92601, + [SMALL_STATE(2083)] = 92622, + [SMALL_STATE(2084)] = 92651, + [SMALL_STATE(2085)] = 92676, + [SMALL_STATE(2086)] = 92707, + [SMALL_STATE(2087)] = 92736, + [SMALL_STATE(2088)] = 92757, + [SMALL_STATE(2089)] = 92778, + [SMALL_STATE(2090)] = 92807, + [SMALL_STATE(2091)] = 92836, + [SMALL_STATE(2092)] = 92867, + [SMALL_STATE(2093)] = 92896, + [SMALL_STATE(2094)] = 92925, + [SMALL_STATE(2095)] = 92954, + [SMALL_STATE(2096)] = 92979, + [SMALL_STATE(2097)] = 93000, + [SMALL_STATE(2098)] = 93031, + [SMALL_STATE(2099)] = 93062, + [SMALL_STATE(2100)] = 93093, + [SMALL_STATE(2101)] = 93124, + [SMALL_STATE(2102)] = 93153, + [SMALL_STATE(2103)] = 93182, + [SMALL_STATE(2104)] = 93203, + [SMALL_STATE(2105)] = 93224, + [SMALL_STATE(2106)] = 93248, + [SMALL_STATE(2107)] = 93272, + [SMALL_STATE(2108)] = 93296, + [SMALL_STATE(2109)] = 93320, + [SMALL_STATE(2110)] = 93344, + [SMALL_STATE(2111)] = 93368, + [SMALL_STATE(2112)] = 93392, + [SMALL_STATE(2113)] = 93416, + [SMALL_STATE(2114)] = 93440, + [SMALL_STATE(2115)] = 93460, + [SMALL_STATE(2116)] = 93484, + [SMALL_STATE(2117)] = 93506, + [SMALL_STATE(2118)] = 93530, + [SMALL_STATE(2119)] = 93554, + [SMALL_STATE(2120)] = 93578, + [SMALL_STATE(2121)] = 93602, + [SMALL_STATE(2122)] = 93626, + [SMALL_STATE(2123)] = 93650, + [SMALL_STATE(2124)] = 93672, + [SMALL_STATE(2125)] = 93694, + [SMALL_STATE(2126)] = 93718, + [SMALL_STATE(2127)] = 93742, + [SMALL_STATE(2128)] = 93766, + [SMALL_STATE(2129)] = 93790, + [SMALL_STATE(2130)] = 93814, + [SMALL_STATE(2131)] = 93838, + [SMALL_STATE(2132)] = 93862, + [SMALL_STATE(2133)] = 93886, + [SMALL_STATE(2134)] = 93910, + [SMALL_STATE(2135)] = 93934, + [SMALL_STATE(2136)] = 93958, + [SMALL_STATE(2137)] = 93982, + [SMALL_STATE(2138)] = 94006, + [SMALL_STATE(2139)] = 94030, + [SMALL_STATE(2140)] = 94054, + [SMALL_STATE(2141)] = 94078, + [SMALL_STATE(2142)] = 94100, + [SMALL_STATE(2143)] = 94124, + [SMALL_STATE(2144)] = 94148, + [SMALL_STATE(2145)] = 94172, + [SMALL_STATE(2146)] = 94196, + [SMALL_STATE(2147)] = 94218, + [SMALL_STATE(2148)] = 94242, + [SMALL_STATE(2149)] = 94266, + [SMALL_STATE(2150)] = 94290, + [SMALL_STATE(2151)] = 94314, + [SMALL_STATE(2152)] = 94338, + [SMALL_STATE(2153)] = 94362, + [SMALL_STATE(2154)] = 94386, + [SMALL_STATE(2155)] = 94410, + [SMALL_STATE(2156)] = 94434, + [SMALL_STATE(2157)] = 94456, + [SMALL_STATE(2158)] = 94480, + [SMALL_STATE(2159)] = 94504, + [SMALL_STATE(2160)] = 94528, + [SMALL_STATE(2161)] = 94555, + [SMALL_STATE(2162)] = 94582, + [SMALL_STATE(2163)] = 94609, + [SMALL_STATE(2164)] = 94636, + [SMALL_STATE(2165)] = 94663, + [SMALL_STATE(2166)] = 94690, + [SMALL_STATE(2167)] = 94711, + [SMALL_STATE(2168)] = 94738, + [SMALL_STATE(2169)] = 94765, + [SMALL_STATE(2170)] = 94792, + [SMALL_STATE(2171)] = 94811, + [SMALL_STATE(2172)] = 94838, + [SMALL_STATE(2173)] = 94865, + [SMALL_STATE(2174)] = 94892, + [SMALL_STATE(2175)] = 94919, + [SMALL_STATE(2176)] = 94938, + [SMALL_STATE(2177)] = 94957, + [SMALL_STATE(2178)] = 94984, + [SMALL_STATE(2179)] = 95011, + [SMALL_STATE(2180)] = 95038, + [SMALL_STATE(2181)] = 95065, + [SMALL_STATE(2182)] = 95092, + [SMALL_STATE(2183)] = 95119, + [SMALL_STATE(2184)] = 95146, + [SMALL_STATE(2185)] = 95165, + [SMALL_STATE(2186)] = 95192, + [SMALL_STATE(2187)] = 95219, + [SMALL_STATE(2188)] = 95246, + [SMALL_STATE(2189)] = 95265, + [SMALL_STATE(2190)] = 95292, + [SMALL_STATE(2191)] = 95319, + [SMALL_STATE(2192)] = 95338, + [SMALL_STATE(2193)] = 95365, + [SMALL_STATE(2194)] = 95395, + [SMALL_STATE(2195)] = 95425, + [SMALL_STATE(2196)] = 95455, + [SMALL_STATE(2197)] = 95485, + [SMALL_STATE(2198)] = 95515, + [SMALL_STATE(2199)] = 95545, + [SMALL_STATE(2200)] = 95575, + [SMALL_STATE(2201)] = 95605, + [SMALL_STATE(2202)] = 95635, + [SMALL_STATE(2203)] = 95665, + [SMALL_STATE(2204)] = 95695, + [SMALL_STATE(2205)] = 95725, + [SMALL_STATE(2206)] = 95755, + [SMALL_STATE(2207)] = 95785, + [SMALL_STATE(2208)] = 95815, + [SMALL_STATE(2209)] = 95845, + [SMALL_STATE(2210)] = 95875, + [SMALL_STATE(2211)] = 95905, + [SMALL_STATE(2212)] = 95935, + [SMALL_STATE(2213)] = 95965, + [SMALL_STATE(2214)] = 95995, + [SMALL_STATE(2215)] = 96025, + [SMALL_STATE(2216)] = 96055, + [SMALL_STATE(2217)] = 96085, + [SMALL_STATE(2218)] = 96115, + [SMALL_STATE(2219)] = 96145, + [SMALL_STATE(2220)] = 96175, + [SMALL_STATE(2221)] = 96205, + [SMALL_STATE(2222)] = 96235, + [SMALL_STATE(2223)] = 96265, + [SMALL_STATE(2224)] = 96295, + [SMALL_STATE(2225)] = 96325, + [SMALL_STATE(2226)] = 96355, + [SMALL_STATE(2227)] = 96385, + [SMALL_STATE(2228)] = 96413, + [SMALL_STATE(2229)] = 96443, + [SMALL_STATE(2230)] = 96473, + [SMALL_STATE(2231)] = 96503, + [SMALL_STATE(2232)] = 96533, + [SMALL_STATE(2233)] = 96561, + [SMALL_STATE(2234)] = 96581, + [SMALL_STATE(2235)] = 96611, + [SMALL_STATE(2236)] = 96641, + [SMALL_STATE(2237)] = 96671, + [SMALL_STATE(2238)] = 96699, + [SMALL_STATE(2239)] = 96727, + [SMALL_STATE(2240)] = 96757, + [SMALL_STATE(2241)] = 96787, + [SMALL_STATE(2242)] = 96817, + [SMALL_STATE(2243)] = 96847, + [SMALL_STATE(2244)] = 96877, + [SMALL_STATE(2245)] = 96905, + [SMALL_STATE(2246)] = 96935, + [SMALL_STATE(2247)] = 96965, + [SMALL_STATE(2248)] = 96995, + [SMALL_STATE(2249)] = 97011, + [SMALL_STATE(2250)] = 97027, + [SMALL_STATE(2251)] = 97051, + [SMALL_STATE(2252)] = 97075, + [SMALL_STATE(2253)] = 97099, + [SMALL_STATE(2254)] = 97123, + [SMALL_STATE(2255)] = 97139, + [SMALL_STATE(2256)] = 97163, + [SMALL_STATE(2257)] = 97183, + [SMALL_STATE(2258)] = 97199, + [SMALL_STATE(2259)] = 97223, + [SMALL_STATE(2260)] = 97238, + [SMALL_STATE(2261)] = 97259, + [SMALL_STATE(2262)] = 97278, + [SMALL_STATE(2263)] = 97293, + [SMALL_STATE(2264)] = 97308, + [SMALL_STATE(2265)] = 97323, + [SMALL_STATE(2266)] = 97338, + [SMALL_STATE(2267)] = 97353, + [SMALL_STATE(2268)] = 97368, + [SMALL_STATE(2269)] = 97383, + [SMALL_STATE(2270)] = 97398, + [SMALL_STATE(2271)] = 97419, + [SMALL_STATE(2272)] = 97440, + [SMALL_STATE(2273)] = 97455, + [SMALL_STATE(2274)] = 97474, + [SMALL_STATE(2275)] = 97489, + [SMALL_STATE(2276)] = 97510, + [SMALL_STATE(2277)] = 97525, + [SMALL_STATE(2278)] = 97540, + [SMALL_STATE(2279)] = 97555, + [SMALL_STATE(2280)] = 97570, + [SMALL_STATE(2281)] = 97585, + [SMALL_STATE(2282)] = 97604, + [SMALL_STATE(2283)] = 97619, + [SMALL_STATE(2284)] = 97634, + [SMALL_STATE(2285)] = 97649, + [SMALL_STATE(2286)] = 97664, + [SMALL_STATE(2287)] = 97679, + [SMALL_STATE(2288)] = 97694, + [SMALL_STATE(2289)] = 97709, + [SMALL_STATE(2290)] = 97724, + [SMALL_STATE(2291)] = 97739, + [SMALL_STATE(2292)] = 97759, + [SMALL_STATE(2293)] = 97773, + [SMALL_STATE(2294)] = 97787, + [SMALL_STATE(2295)] = 97801, + [SMALL_STATE(2296)] = 97815, + [SMALL_STATE(2297)] = 97829, + [SMALL_STATE(2298)] = 97843, + [SMALL_STATE(2299)] = 97857, + [SMALL_STATE(2300)] = 97869, + [SMALL_STATE(2301)] = 97883, + [SMALL_STATE(2302)] = 97897, + [SMALL_STATE(2303)] = 97911, + [SMALL_STATE(2304)] = 97931, + [SMALL_STATE(2305)] = 97943, + [SMALL_STATE(2306)] = 97957, + [SMALL_STATE(2307)] = 97971, + [SMALL_STATE(2308)] = 97985, + [SMALL_STATE(2309)] = 97999, + [SMALL_STATE(2310)] = 98013, + [SMALL_STATE(2311)] = 98027, + [SMALL_STATE(2312)] = 98041, + [SMALL_STATE(2313)] = 98061, + [SMALL_STATE(2314)] = 98075, + [SMALL_STATE(2315)] = 98089, + [SMALL_STATE(2316)] = 98103, + [SMALL_STATE(2317)] = 98117, + [SMALL_STATE(2318)] = 98131, + [SMALL_STATE(2319)] = 98145, + [SMALL_STATE(2320)] = 98159, + [SMALL_STATE(2321)] = 98173, + [SMALL_STATE(2322)] = 98187, + [SMALL_STATE(2323)] = 98201, + [SMALL_STATE(2324)] = 98215, + [SMALL_STATE(2325)] = 98229, + [SMALL_STATE(2326)] = 98243, + [SMALL_STATE(2327)] = 98257, + [SMALL_STATE(2328)] = 98271, + [SMALL_STATE(2329)] = 98285, + [SMALL_STATE(2330)] = 98299, + [SMALL_STATE(2331)] = 98313, + [SMALL_STATE(2332)] = 98327, + [SMALL_STATE(2333)] = 98341, + [SMALL_STATE(2334)] = 98355, + [SMALL_STATE(2335)] = 98369, + [SMALL_STATE(2336)] = 98383, + [SMALL_STATE(2337)] = 98397, + [SMALL_STATE(2338)] = 98411, + [SMALL_STATE(2339)] = 98431, + [SMALL_STATE(2340)] = 98445, + [SMALL_STATE(2341)] = 98459, + [SMALL_STATE(2342)] = 98473, + [SMALL_STATE(2343)] = 98487, + [SMALL_STATE(2344)] = 98501, + [SMALL_STATE(2345)] = 98516, + [SMALL_STATE(2346)] = 98531, + [SMALL_STATE(2347)] = 98548, + [SMALL_STATE(2348)] = 98565, + [SMALL_STATE(2349)] = 98578, + [SMALL_STATE(2350)] = 98595, + [SMALL_STATE(2351)] = 98610, + [SMALL_STATE(2352)] = 98625, + [SMALL_STATE(2353)] = 98642, + [SMALL_STATE(2354)] = 98657, + [SMALL_STATE(2355)] = 98674, + [SMALL_STATE(2356)] = 98691, + [SMALL_STATE(2357)] = 98708, + [SMALL_STATE(2358)] = 98723, + [SMALL_STATE(2359)] = 98738, + [SMALL_STATE(2360)] = 98751, + [SMALL_STATE(2361)] = 98768, + [SMALL_STATE(2362)] = 98787, + [SMALL_STATE(2363)] = 98804, + [SMALL_STATE(2364)] = 98819, + [SMALL_STATE(2365)] = 98834, + [SMALL_STATE(2366)] = 98851, + [SMALL_STATE(2367)] = 98864, + [SMALL_STATE(2368)] = 98881, + [SMALL_STATE(2369)] = 98896, + [SMALL_STATE(2370)] = 98913, + [SMALL_STATE(2371)] = 98930, + [SMALL_STATE(2372)] = 98945, + [SMALL_STATE(2373)] = 98964, + [SMALL_STATE(2374)] = 98979, + [SMALL_STATE(2375)] = 98994, + [SMALL_STATE(2376)] = 99011, + [SMALL_STATE(2377)] = 99030, + [SMALL_STATE(2378)] = 99047, + [SMALL_STATE(2379)] = 99062, + [SMALL_STATE(2380)] = 99079, + [SMALL_STATE(2381)] = 99098, + [SMALL_STATE(2382)] = 99112, + [SMALL_STATE(2383)] = 99124, + [SMALL_STATE(2384)] = 99136, + [SMALL_STATE(2385)] = 99150, + [SMALL_STATE(2386)] = 99164, + [SMALL_STATE(2387)] = 99176, + [SMALL_STATE(2388)] = 99190, + [SMALL_STATE(2389)] = 99204, + [SMALL_STATE(2390)] = 99218, + [SMALL_STATE(2391)] = 99234, + [SMALL_STATE(2392)] = 99248, + [SMALL_STATE(2393)] = 99264, + [SMALL_STATE(2394)] = 99278, + [SMALL_STATE(2395)] = 99292, + [SMALL_STATE(2396)] = 99306, + [SMALL_STATE(2397)] = 99318, + [SMALL_STATE(2398)] = 99332, + [SMALL_STATE(2399)] = 99348, + [SMALL_STATE(2400)] = 99362, + [SMALL_STATE(2401)] = 99376, + [SMALL_STATE(2402)] = 99390, + [SMALL_STATE(2403)] = 99402, + [SMALL_STATE(2404)] = 99414, + [SMALL_STATE(2405)] = 99428, + [SMALL_STATE(2406)] = 99442, + [SMALL_STATE(2407)] = 99454, + [SMALL_STATE(2408)] = 99468, + [SMALL_STATE(2409)] = 99480, + [SMALL_STATE(2410)] = 99492, + [SMALL_STATE(2411)] = 99506, + [SMALL_STATE(2412)] = 99520, + [SMALL_STATE(2413)] = 99532, + [SMALL_STATE(2414)] = 99546, + [SMALL_STATE(2415)] = 99560, + [SMALL_STATE(2416)] = 99574, + [SMALL_STATE(2417)] = 99586, + [SMALL_STATE(2418)] = 99600, + [SMALL_STATE(2419)] = 99613, + [SMALL_STATE(2420)] = 99626, + [SMALL_STATE(2421)] = 99639, + [SMALL_STATE(2422)] = 99652, + [SMALL_STATE(2423)] = 99665, + [SMALL_STATE(2424)] = 99678, + [SMALL_STATE(2425)] = 99691, + [SMALL_STATE(2426)] = 99704, + [SMALL_STATE(2427)] = 99717, + [SMALL_STATE(2428)] = 99730, + [SMALL_STATE(2429)] = 99743, + [SMALL_STATE(2430)] = 99756, + [SMALL_STATE(2431)] = 99769, + [SMALL_STATE(2432)] = 99782, + [SMALL_STATE(2433)] = 99795, + [SMALL_STATE(2434)] = 99808, + [SMALL_STATE(2435)] = 99821, + [SMALL_STATE(2436)] = 99834, + [SMALL_STATE(2437)] = 99847, + [SMALL_STATE(2438)] = 99860, + [SMALL_STATE(2439)] = 99873, + [SMALL_STATE(2440)] = 99886, + [SMALL_STATE(2441)] = 99899, + [SMALL_STATE(2442)] = 99912, + [SMALL_STATE(2443)] = 99925, + [SMALL_STATE(2444)] = 99938, + [SMALL_STATE(2445)] = 99949, + [SMALL_STATE(2446)] = 99962, + [SMALL_STATE(2447)] = 99975, + [SMALL_STATE(2448)] = 99988, + [SMALL_STATE(2449)] = 100001, + [SMALL_STATE(2450)] = 100014, + [SMALL_STATE(2451)] = 100025, + [SMALL_STATE(2452)] = 100038, + [SMALL_STATE(2453)] = 100051, + [SMALL_STATE(2454)] = 100062, + [SMALL_STATE(2455)] = 100075, + [SMALL_STATE(2456)] = 100088, + [SMALL_STATE(2457)] = 100101, + [SMALL_STATE(2458)] = 100114, + [SMALL_STATE(2459)] = 100127, + [SMALL_STATE(2460)] = 100140, + [SMALL_STATE(2461)] = 100153, + [SMALL_STATE(2462)] = 100166, + [SMALL_STATE(2463)] = 100179, + [SMALL_STATE(2464)] = 100192, + [SMALL_STATE(2465)] = 100205, + [SMALL_STATE(2466)] = 100218, + [SMALL_STATE(2467)] = 100231, + [SMALL_STATE(2468)] = 100242, + [SMALL_STATE(2469)] = 100255, + [SMALL_STATE(2470)] = 100268, + [SMALL_STATE(2471)] = 100281, + [SMALL_STATE(2472)] = 100294, + [SMALL_STATE(2473)] = 100305, + [SMALL_STATE(2474)] = 100318, + [SMALL_STATE(2475)] = 100331, + [SMALL_STATE(2476)] = 100344, + [SMALL_STATE(2477)] = 100357, + [SMALL_STATE(2478)] = 100370, + [SMALL_STATE(2479)] = 100383, + [SMALL_STATE(2480)] = 100394, + [SMALL_STATE(2481)] = 100407, + [SMALL_STATE(2482)] = 100420, + [SMALL_STATE(2483)] = 100433, + [SMALL_STATE(2484)] = 100446, + [SMALL_STATE(2485)] = 100459, + [SMALL_STATE(2486)] = 100472, + [SMALL_STATE(2487)] = 100483, + [SMALL_STATE(2488)] = 100494, + [SMALL_STATE(2489)] = 100507, + [SMALL_STATE(2490)] = 100520, + [SMALL_STATE(2491)] = 100533, + [SMALL_STATE(2492)] = 100546, + [SMALL_STATE(2493)] = 100559, + [SMALL_STATE(2494)] = 100572, + [SMALL_STATE(2495)] = 100583, + [SMALL_STATE(2496)] = 100596, + [SMALL_STATE(2497)] = 100609, + [SMALL_STATE(2498)] = 100622, + [SMALL_STATE(2499)] = 100635, + [SMALL_STATE(2500)] = 100648, + [SMALL_STATE(2501)] = 100661, + [SMALL_STATE(2502)] = 100674, + [SMALL_STATE(2503)] = 100687, + [SMALL_STATE(2504)] = 100700, + [SMALL_STATE(2505)] = 100713, + [SMALL_STATE(2506)] = 100726, + [SMALL_STATE(2507)] = 100739, + [SMALL_STATE(2508)] = 100752, + [SMALL_STATE(2509)] = 100765, + [SMALL_STATE(2510)] = 100778, + [SMALL_STATE(2511)] = 100791, + [SMALL_STATE(2512)] = 100804, + [SMALL_STATE(2513)] = 100817, + [SMALL_STATE(2514)] = 100830, + [SMALL_STATE(2515)] = 100843, + [SMALL_STATE(2516)] = 100856, + [SMALL_STATE(2517)] = 100867, + [SMALL_STATE(2518)] = 100880, + [SMALL_STATE(2519)] = 100893, + [SMALL_STATE(2520)] = 100906, + [SMALL_STATE(2521)] = 100919, + [SMALL_STATE(2522)] = 100932, + [SMALL_STATE(2523)] = 100945, + [SMALL_STATE(2524)] = 100956, + [SMALL_STATE(2525)] = 100969, + [SMALL_STATE(2526)] = 100982, + [SMALL_STATE(2527)] = 100995, + [SMALL_STATE(2528)] = 101008, + [SMALL_STATE(2529)] = 101021, + [SMALL_STATE(2530)] = 101034, + [SMALL_STATE(2531)] = 101047, + [SMALL_STATE(2532)] = 101060, + [SMALL_STATE(2533)] = 101071, + [SMALL_STATE(2534)] = 101084, + [SMALL_STATE(2535)] = 101097, + [SMALL_STATE(2536)] = 101110, + [SMALL_STATE(2537)] = 101123, + [SMALL_STATE(2538)] = 101136, + [SMALL_STATE(2539)] = 101149, + [SMALL_STATE(2540)] = 101162, + [SMALL_STATE(2541)] = 101175, + [SMALL_STATE(2542)] = 101188, + [SMALL_STATE(2543)] = 101201, + [SMALL_STATE(2544)] = 101214, + [SMALL_STATE(2545)] = 101227, + [SMALL_STATE(2546)] = 101240, + [SMALL_STATE(2547)] = 101253, + [SMALL_STATE(2548)] = 101261, + [SMALL_STATE(2549)] = 101271, + [SMALL_STATE(2550)] = 101281, + [SMALL_STATE(2551)] = 101289, + [SMALL_STATE(2552)] = 101299, + [SMALL_STATE(2553)] = 101309, + [SMALL_STATE(2554)] = 101319, + [SMALL_STATE(2555)] = 101329, + [SMALL_STATE(2556)] = 101339, + [SMALL_STATE(2557)] = 101349, + [SMALL_STATE(2558)] = 101359, + [SMALL_STATE(2559)] = 101367, + [SMALL_STATE(2560)] = 101375, + [SMALL_STATE(2561)] = 101385, + [SMALL_STATE(2562)] = 101395, + [SMALL_STATE(2563)] = 101405, + [SMALL_STATE(2564)] = 101415, + [SMALL_STATE(2565)] = 101423, + [SMALL_STATE(2566)] = 101433, + [SMALL_STATE(2567)] = 101443, + [SMALL_STATE(2568)] = 101453, + [SMALL_STATE(2569)] = 101461, + [SMALL_STATE(2570)] = 101471, + [SMALL_STATE(2571)] = 101481, + [SMALL_STATE(2572)] = 101491, + [SMALL_STATE(2573)] = 101499, + [SMALL_STATE(2574)] = 101509, + [SMALL_STATE(2575)] = 101519, + [SMALL_STATE(2576)] = 101529, + [SMALL_STATE(2577)] = 101539, + [SMALL_STATE(2578)] = 101549, + [SMALL_STATE(2579)] = 101559, + [SMALL_STATE(2580)] = 101567, + [SMALL_STATE(2581)] = 101577, + [SMALL_STATE(2582)] = 101587, + [SMALL_STATE(2583)] = 101597, + [SMALL_STATE(2584)] = 101605, + [SMALL_STATE(2585)] = 101615, + [SMALL_STATE(2586)] = 101625, + [SMALL_STATE(2587)] = 101635, + [SMALL_STATE(2588)] = 101645, + [SMALL_STATE(2589)] = 101655, + [SMALL_STATE(2590)] = 101663, + [SMALL_STATE(2591)] = 101673, + [SMALL_STATE(2592)] = 101683, + [SMALL_STATE(2593)] = 101693, + [SMALL_STATE(2594)] = 101703, + [SMALL_STATE(2595)] = 101713, + [SMALL_STATE(2596)] = 101723, + [SMALL_STATE(2597)] = 101733, + [SMALL_STATE(2598)] = 101743, + [SMALL_STATE(2599)] = 101751, + [SMALL_STATE(2600)] = 101761, + [SMALL_STATE(2601)] = 101769, + [SMALL_STATE(2602)] = 101777, + [SMALL_STATE(2603)] = 101785, + [SMALL_STATE(2604)] = 101795, + [SMALL_STATE(2605)] = 101805, + [SMALL_STATE(2606)] = 101813, + [SMALL_STATE(2607)] = 101821, + [SMALL_STATE(2608)] = 101831, + [SMALL_STATE(2609)] = 101839, + [SMALL_STATE(2610)] = 101847, + [SMALL_STATE(2611)] = 101855, + [SMALL_STATE(2612)] = 101865, + [SMALL_STATE(2613)] = 101873, + [SMALL_STATE(2614)] = 101883, + [SMALL_STATE(2615)] = 101893, + [SMALL_STATE(2616)] = 101901, + [SMALL_STATE(2617)] = 101911, + [SMALL_STATE(2618)] = 101921, + [SMALL_STATE(2619)] = 101929, + [SMALL_STATE(2620)] = 101937, + [SMALL_STATE(2621)] = 101945, + [SMALL_STATE(2622)] = 101953, + [SMALL_STATE(2623)] = 101963, + [SMALL_STATE(2624)] = 101971, + [SMALL_STATE(2625)] = 101979, + [SMALL_STATE(2626)] = 101987, + [SMALL_STATE(2627)] = 101997, + [SMALL_STATE(2628)] = 102005, + [SMALL_STATE(2629)] = 102013, + [SMALL_STATE(2630)] = 102023, + [SMALL_STATE(2631)] = 102031, + [SMALL_STATE(2632)] = 102041, + [SMALL_STATE(2633)] = 102049, + [SMALL_STATE(2634)] = 102059, + [SMALL_STATE(2635)] = 102069, + [SMALL_STATE(2636)] = 102079, + [SMALL_STATE(2637)] = 102089, + [SMALL_STATE(2638)] = 102099, + [SMALL_STATE(2639)] = 102109, + [SMALL_STATE(2640)] = 102119, + [SMALL_STATE(2641)] = 102129, + [SMALL_STATE(2642)] = 102137, + [SMALL_STATE(2643)] = 102147, + [SMALL_STATE(2644)] = 102157, + [SMALL_STATE(2645)] = 102165, + [SMALL_STATE(2646)] = 102175, + [SMALL_STATE(2647)] = 102183, + [SMALL_STATE(2648)] = 102193, + [SMALL_STATE(2649)] = 102201, + [SMALL_STATE(2650)] = 102211, + [SMALL_STATE(2651)] = 102219, + [SMALL_STATE(2652)] = 102227, + [SMALL_STATE(2653)] = 102235, + [SMALL_STATE(2654)] = 102242, + [SMALL_STATE(2655)] = 102249, + [SMALL_STATE(2656)] = 102256, + [SMALL_STATE(2657)] = 102263, + [SMALL_STATE(2658)] = 102270, + [SMALL_STATE(2659)] = 102277, + [SMALL_STATE(2660)] = 102284, + [SMALL_STATE(2661)] = 102291, + [SMALL_STATE(2662)] = 102298, + [SMALL_STATE(2663)] = 102305, + [SMALL_STATE(2664)] = 102312, + [SMALL_STATE(2665)] = 102319, + [SMALL_STATE(2666)] = 102326, + [SMALL_STATE(2667)] = 102333, + [SMALL_STATE(2668)] = 102340, + [SMALL_STATE(2669)] = 102347, + [SMALL_STATE(2670)] = 102354, + [SMALL_STATE(2671)] = 102361, + [SMALL_STATE(2672)] = 102368, + [SMALL_STATE(2673)] = 102375, + [SMALL_STATE(2674)] = 102382, + [SMALL_STATE(2675)] = 102389, + [SMALL_STATE(2676)] = 102396, + [SMALL_STATE(2677)] = 102403, + [SMALL_STATE(2678)] = 102410, + [SMALL_STATE(2679)] = 102417, + [SMALL_STATE(2680)] = 102424, + [SMALL_STATE(2681)] = 102431, + [SMALL_STATE(2682)] = 102438, + [SMALL_STATE(2683)] = 102445, + [SMALL_STATE(2684)] = 102452, + [SMALL_STATE(2685)] = 102459, + [SMALL_STATE(2686)] = 102466, + [SMALL_STATE(2687)] = 102473, + [SMALL_STATE(2688)] = 102480, + [SMALL_STATE(2689)] = 102487, + [SMALL_STATE(2690)] = 102494, + [SMALL_STATE(2691)] = 102501, + [SMALL_STATE(2692)] = 102508, + [SMALL_STATE(2693)] = 102515, + [SMALL_STATE(2694)] = 102522, + [SMALL_STATE(2695)] = 102529, + [SMALL_STATE(2696)] = 102536, + [SMALL_STATE(2697)] = 102543, + [SMALL_STATE(2698)] = 102550, + [SMALL_STATE(2699)] = 102557, + [SMALL_STATE(2700)] = 102564, + [SMALL_STATE(2701)] = 102571, + [SMALL_STATE(2702)] = 102578, + [SMALL_STATE(2703)] = 102585, + [SMALL_STATE(2704)] = 102592, + [SMALL_STATE(2705)] = 102599, + [SMALL_STATE(2706)] = 102606, + [SMALL_STATE(2707)] = 102613, + [SMALL_STATE(2708)] = 102620, + [SMALL_STATE(2709)] = 102627, + [SMALL_STATE(2710)] = 102634, + [SMALL_STATE(2711)] = 102641, + [SMALL_STATE(2712)] = 102648, + [SMALL_STATE(2713)] = 102655, + [SMALL_STATE(2714)] = 102662, + [SMALL_STATE(2715)] = 102669, + [SMALL_STATE(2716)] = 102676, + [SMALL_STATE(2717)] = 102683, + [SMALL_STATE(2718)] = 102690, + [SMALL_STATE(2719)] = 102697, + [SMALL_STATE(2720)] = 102704, + [SMALL_STATE(2721)] = 102711, + [SMALL_STATE(2722)] = 102718, + [SMALL_STATE(2723)] = 102725, + [SMALL_STATE(2724)] = 102732, + [SMALL_STATE(2725)] = 102739, + [SMALL_STATE(2726)] = 102746, + [SMALL_STATE(2727)] = 102753, + [SMALL_STATE(2728)] = 102760, + [SMALL_STATE(2729)] = 102767, + [SMALL_STATE(2730)] = 102774, + [SMALL_STATE(2731)] = 102781, + [SMALL_STATE(2732)] = 102788, + [SMALL_STATE(2733)] = 102795, + [SMALL_STATE(2734)] = 102802, + [SMALL_STATE(2735)] = 102809, + [SMALL_STATE(2736)] = 102816, + [SMALL_STATE(2737)] = 102823, + [SMALL_STATE(2738)] = 102830, + [SMALL_STATE(2739)] = 102837, + [SMALL_STATE(2740)] = 102844, + [SMALL_STATE(2741)] = 102851, + [SMALL_STATE(2742)] = 102858, + [SMALL_STATE(2743)] = 102865, + [SMALL_STATE(2744)] = 102872, + [SMALL_STATE(2745)] = 102879, + [SMALL_STATE(2746)] = 102886, + [SMALL_STATE(2747)] = 102893, + [SMALL_STATE(2748)] = 102900, + [SMALL_STATE(2749)] = 102907, + [SMALL_STATE(2750)] = 102914, + [SMALL_STATE(2751)] = 102921, + [SMALL_STATE(2752)] = 102928, + [SMALL_STATE(2753)] = 102935, + [SMALL_STATE(2754)] = 102942, + [SMALL_STATE(2755)] = 102949, + [SMALL_STATE(2756)] = 102956, + [SMALL_STATE(2757)] = 102963, + [SMALL_STATE(2758)] = 102970, + [SMALL_STATE(2759)] = 102977, + [SMALL_STATE(2760)] = 102984, + [SMALL_STATE(2761)] = 102991, + [SMALL_STATE(2762)] = 102998, + [SMALL_STATE(2763)] = 103005, + [SMALL_STATE(2764)] = 103012, + [SMALL_STATE(2765)] = 103019, + [SMALL_STATE(2766)] = 103026, + [SMALL_STATE(2767)] = 103033, + [SMALL_STATE(2768)] = 103040, + [SMALL_STATE(2769)] = 103047, + [SMALL_STATE(2770)] = 103054, + [SMALL_STATE(2771)] = 103061, + [SMALL_STATE(2772)] = 103068, + [SMALL_STATE(2773)] = 103075, + [SMALL_STATE(2774)] = 103082, + [SMALL_STATE(2775)] = 103089, + [SMALL_STATE(2776)] = 103096, + [SMALL_STATE(2777)] = 103103, + [SMALL_STATE(2778)] = 103110, + [SMALL_STATE(2779)] = 103117, + [SMALL_STATE(2780)] = 103124, + [SMALL_STATE(2781)] = 103131, + [SMALL_STATE(2782)] = 103138, + [SMALL_STATE(2783)] = 103145, + [SMALL_STATE(2784)] = 103152, + [SMALL_STATE(2785)] = 103159, + [SMALL_STATE(2786)] = 103166, + [SMALL_STATE(2787)] = 103173, + [SMALL_STATE(2788)] = 103180, + [SMALL_STATE(2789)] = 103187, + [SMALL_STATE(2790)] = 103194, + [SMALL_STATE(2791)] = 103201, + [SMALL_STATE(2792)] = 103208, + [SMALL_STATE(2793)] = 103215, + [SMALL_STATE(2794)] = 103222, + [SMALL_STATE(2795)] = 103229, + [SMALL_STATE(2796)] = 103236, + [SMALL_STATE(2797)] = 103243, + [SMALL_STATE(2798)] = 103250, + [SMALL_STATE(2799)] = 103257, + [SMALL_STATE(2800)] = 103264, + [SMALL_STATE(2801)] = 103271, + [SMALL_STATE(2802)] = 103278, + [SMALL_STATE(2803)] = 103285, + [SMALL_STATE(2804)] = 103292, + [SMALL_STATE(2805)] = 103299, + [SMALL_STATE(2806)] = 103306, + [SMALL_STATE(2807)] = 103313, + [SMALL_STATE(2808)] = 103320, + [SMALL_STATE(2809)] = 103327, + [SMALL_STATE(2810)] = 103334, + [SMALL_STATE(2811)] = 103341, + [SMALL_STATE(2812)] = 103348, + [SMALL_STATE(2813)] = 103355, + [SMALL_STATE(2814)] = 103362, + [SMALL_STATE(2815)] = 103369, + [SMALL_STATE(2816)] = 103376, + [SMALL_STATE(2817)] = 103383, + [SMALL_STATE(2818)] = 103390, + [SMALL_STATE(2819)] = 103397, + [SMALL_STATE(2820)] = 103404, + [SMALL_STATE(2821)] = 103411, + [SMALL_STATE(2822)] = 103418, + [SMALL_STATE(2823)] = 103425, }; static TSParseActionEntry ts_parse_actions[] = { @@ -101898,3235 +102824,3263 @@ static 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(221), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(224), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2526), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1015), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(110), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(231), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2645), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(957), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(111), [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(111), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1866), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2728), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(101), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(60), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(195), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1014), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1013), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(128), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(183), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1910), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1910), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2019), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(262), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2191), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(260), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2078), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(106), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(105), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(102), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2229), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2506), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 43), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(117), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1902), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2672), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(50), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(100), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(194), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(956), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(955), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(129), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(186), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1881), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1881), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2069), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(263), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2215), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(242), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2068), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(73), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(74), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(78), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2254), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2450), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 36), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 37), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 36), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 43), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 45), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(224), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2526), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1015), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(110), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(111), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1866), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2728), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(101), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(60), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(195), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1014), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1013), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(128), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(183), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1910), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1910), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2019), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(262), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2191), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(260), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2078), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(106), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(105), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(102), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2229), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2506), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(242), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2046), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2222), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2081), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(21), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(79), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(30), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(130), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2427), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(248), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2011), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(244), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2214), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2085), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(84), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(77), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(75), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(134), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2447), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(251), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2030), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2198), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2120), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(80), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(78), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(81), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(135), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2438), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(231), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2645), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(957), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(111), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(117), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1902), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2672), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(50), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(100), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(194), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(956), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(955), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(129), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(186), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1881), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1881), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2069), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(263), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2215), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(242), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2068), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(73), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(74), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(78), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2254), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2450), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(244), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2092), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(272), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2195), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2051), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(21), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(67), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(30), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(130), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2494), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(256), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2093), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(265), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2214), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2099), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(94), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(133), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2453), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(270), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2083), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(267), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2239), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2052), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(79), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(77), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(80), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(136), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2472), [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 8), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 8), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 1), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 1), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 1), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 1), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(261), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1806), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2048), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(243), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2188), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2075), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(24), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(25), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(26), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(254), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1753), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2023), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(269), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2154), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2083), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(29), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(28), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(39), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(238), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1850), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2019), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(262), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2191), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2078), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(106), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(105), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(102), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(427), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2044), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(471), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2163), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2071), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(37), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(35), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(23), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(174), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(425), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2026), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(356), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2211), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2115), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(72), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(71), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(76), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(176), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(326), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2045), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(296), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2224), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2077), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(74), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(73), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(69), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(191), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 8), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 8), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(276), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1763), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2065), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(252), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2201), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2027), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(29), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(28), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(39), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(273), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1783), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2069), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(263), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2215), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2068), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(73), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(74), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(78), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(266), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(1765), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2070), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(274), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2230), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2079), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(24), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(25), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(26), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(368), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2090), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(462), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2209), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2042), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(34), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(32), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(23), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(178), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(471), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2030), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(438), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2222), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2035), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(101), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(102), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(104), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(180), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(426), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2050), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(319), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2242), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2091), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(72), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(71), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(75), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(183), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1928), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1934), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1948), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1951), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1943), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1961), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1964), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expansion, 2), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expansion, 2), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1952), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 32), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 32), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1927), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 27), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 27), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 2), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 2), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(607), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 27), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 27), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 27), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 27), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 38), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 38), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 27), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 27), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(633), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1950), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(561), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(616), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1947), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(610), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(550), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1970), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(671), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(675), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(679), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(665), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(676), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(678), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1651), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1196), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2039), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1710), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2168), - [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1651), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1196), - [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2112), - [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(63), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(62), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(70), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1868), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2733), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1908), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2233), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1946), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1363), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1887), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2661), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1890), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2236), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(1910), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(1910), - [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2229), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2452), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1864), - [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1865), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2231), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1949), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), - [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1389), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1962), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1965), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2022), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1923), - [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2172), - [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2105), - [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(52), - [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(51), - [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(53), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1972), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1961), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1941), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1963), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1950), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1947), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expansion, 2), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expansion, 2), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 27), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 27), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 27), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 27), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 38), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 38), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 32), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 32), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 27), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 27), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 27), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 27), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1958), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(649), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(622), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1977), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(613), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 2), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 2), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(555), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1968), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(626), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1986), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1949), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1955), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(578), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(685), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(679), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(686), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(687), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(677), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(689), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1658), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1084), + [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2089), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1657), + [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2196), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1658), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1084), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2100), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(63), + [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(62), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(70), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1922), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2770), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1925), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2248), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(1881), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(1881), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2254), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2444), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1363), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1907), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2720), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1913), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2249), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1911), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1914), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2257), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1990), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1980), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2054), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1975), + [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2216), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2029), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(52), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(51), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(53), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1985), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1449), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1969), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 2), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 53), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 53), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 52), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 52), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 30), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 30), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 29), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 29), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 49), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 49), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 48), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 48), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 47), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 47), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 46), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 46), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 30), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 30), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 29), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 29), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 30), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 30), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 29), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 29), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 29), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 29), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), + [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1550), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1937), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 30), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 30), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 29), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 29), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 31), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 31), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 30), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 30), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 29), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 29), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 28), [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 28), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 31), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 31), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 30), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 30), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 29), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 29), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1605), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 54), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 54), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1936), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1571), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 55), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 55), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1932), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 56), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 56), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1662), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1688), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1933), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1919), - [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1924), - [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1756), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 1), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2344), - [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2032), - [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2354), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2204), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2128), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), - [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(82), - [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), - [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1824), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2001), - [4546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2038), - [4549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2003), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2202), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2106), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(55), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(54), - [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(56), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1912), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1942), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 52), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 52), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 30), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 30), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1938), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 46), + [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 46), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 47), + [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 47), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 48), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 48), + [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1635), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 49), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 49), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 56), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 56), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 55), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 55), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 54), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 54), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 53), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 53), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 29), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 29), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 30), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 30), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1746), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1739), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1966), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2022), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2072), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2024), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2229), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2053), + [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(55), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(54), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(56), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 1), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1839), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1945), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1982), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2380), + [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2102), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2351), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2203), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2078), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(81), + [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(86), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1773), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1905), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1971), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2000), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1929), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2074), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 37), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 37), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 37), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 45), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 45), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 43), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 43), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 43), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 37), - [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 37), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 37), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 36), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 36), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 36), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 36), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 36), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 36), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2141), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [5929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2267), - [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2080), - [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(98), - [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(97), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [5961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2145), - [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2088), - [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(38), - [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(33), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2219), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [6066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2295), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1944), - [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(108), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 29), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 30), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2492), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1966), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1902), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 44), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2584), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 43), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 37), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 36), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [6671] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2020), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1981), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2114), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 45), + [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 45), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 43), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 43), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 43), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 36), + [5550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 36), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 36), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 37), + [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 37), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 37), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 37), + [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 37), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 37), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [5624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 36), + [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 36), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 36), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [5898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2166), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [5903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2276), + [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2043), + [5909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(98), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(97), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [6031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2233), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2097), + [6037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(38), + [6040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(33), + [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2244), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1962), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), + [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), + [6127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2315), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(115), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 30), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 29), + [6257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2487), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1964), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2575), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [6422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1908), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 44), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 36), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 37), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 43), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [6731] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), }; #ifdef __cplusplus