From c410548cafd58ad42510e3124e1c35eaac00adb7 Mon Sep 17 00:00:00 2001 From: Mads Hartmann Date: Wed, 28 Feb 2018 21:15:05 +0100 Subject: [PATCH] Handle escape sequences in strings (#7) This should fix #6 --- corpus/expressions.txt | 10 + grammar.js | 2 +- src/grammar.json | 2 +- src/parser.c | 30709 ++++++++++++++++++++------------------- 4 files changed, 15383 insertions(+), 15340 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 7726373..85c108a 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -160,6 +160,16 @@ find "`dirname $file`" -name "$base"'*' (string (simple_expansion (variable_name))) (raw_string)))) +========================================= +Strings containing escape sequence +========================================= + +echo "\"The great escape\`\${var}" + +--- + +(program (command (command_name (word)) (string))) + ========================================= Variable declaration: declare & typeset ========================================= diff --git a/grammar.js b/grammar.js index b39f3c5..e0dff54 100644 --- a/grammar.js +++ b/grammar.js @@ -269,7 +269,7 @@ module.exports = grammar({ '"' ), - _string_content: $ => /[^"`$]+/, + _string_content: $ => /([^"`$]|\\.)*/, array: $ => seq( '(', diff --git a/src/grammar.json b/src/grammar.json index 45888e2..dc0aa9c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -976,7 +976,7 @@ }, "_string_content": { "type": "PATTERN", - "value": "[^\"`$]+" + "value": "([^\"`$]|\\\\.)*" }, "array": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index b30df9c..18af3f9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2091,6 +2091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(155); END_STATE(); case 158: + ACCEPT_TOKEN(sym__string_content); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -2098,14 +2099,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(6); if (lookahead == '\\') - ADVANCE(161); + ADVANCE(163); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(162); + ADVANCE(164); if (lookahead != 0) ADVANCE(160); END_STATE(); @@ -2113,6 +2114,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') ADVANCE(160); + if (lookahead == '\\') + ADVANCE(162); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && @@ -2121,6 +2124,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 160: ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\\') + ADVANCE(161); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && @@ -2130,36 +2135,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 161: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(162); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') + ADVANCE(160); + if (lookahead == '\\') + ADVANCE(161); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(160); + if (lookahead != 0) ADVANCE(160); END_STATE(); case 162: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(160); + if (lookahead == '\\') + ADVANCE(162); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(159); + if (lookahead != 0) + ADVANCE(159); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(164); + if (lookahead == '\\') + ADVANCE(161); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(160); + if (lookahead != 0) + ADVANCE(160); + END_STATE(); + case 164: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(159); if (lookahead == '\\') - ADVANCE(161); + ADVANCE(163); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(162); + ADVANCE(164); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') ADVANCE(160); END_STATE(); - case 163: + case 165: if (lookahead == '!') ADVANCE(3); if (lookahead == '#') ADVANCE(5); if (lookahead == '$') - ADVANCE(164); + ADVANCE(166); if (lookahead == '%') ADVANCE(9); if (lookahead == '*') @@ -2181,7 +2215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(132); if (lookahead == '\\') - SKIP(165); + SKIP(167); if (lookahead == '_') ADVANCE(47); if (lookahead == '}') @@ -2190,20 +2224,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(163); + SKIP(165); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 164: + case 166: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 165: + case 167: if (lookahead == '\n') - SKIP(163); + SKIP(165); END_STATE(); - case 166: + case 168: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -2225,7 +2259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(167); + SKIP(169); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') @@ -2233,17 +2267,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(166); + SKIP(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 167: + case 169: if (lookahead == '\n') - SKIP(166); + SKIP(168); END_STATE(); - case 168: + case 170: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -2259,7 +2293,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(16); if (lookahead == ';') - ADVANCE(169); + ADVANCE(171); if (lookahead == '<') ADVANCE(123); if (lookahead == '>') @@ -2267,7 +2301,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(42); if (lookahead == '\\') - SKIP(170); + SKIP(172); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') @@ -2294,21 +2328,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(168); + SKIP(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 169: + case 171: if (lookahead == ';') ADVANCE(29); END_STATE(); - case 170: + case 172: if (lookahead == '\n') - SKIP(168); + SKIP(170); END_STATE(); - case 171: + case 173: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -2328,7 +2362,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(172); + SKIP(174); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') @@ -2336,17 +2370,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(171); + SKIP(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 172: + case 174: if (lookahead == '\n') - SKIP(171); + SKIP(173); END_STATE(); - case 173: + case 175: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -2362,24 +2396,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(174); + SKIP(176); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 174: + case 176: if (lookahead == '\n') - SKIP(173); + SKIP(175); END_STATE(); - case 175: + case 177: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -2401,7 +2435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(176); + SKIP(178); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') @@ -2409,17 +2443,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(175); + SKIP(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 176: + case 178: if (lookahead == '\n') - SKIP(175); + SKIP(177); END_STATE(); - case 177: + case 179: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -2435,24 +2469,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(153); if (lookahead == '\\') - SKIP(178); + SKIP(180); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(177); + SKIP(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 178: + case 180: if (lookahead == '\n') - SKIP(177); + SKIP(179); END_STATE(); - case 179: + case 181: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -2474,7 +2508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(180); + SKIP(182); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') @@ -2482,42 +2516,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(179); + SKIP(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 180: + case 182: if (lookahead == '\n') - SKIP(179); + SKIP(181); END_STATE(); - case 181: + case 183: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') ADVANCE(121); if (lookahead == '&') - ADVANCE(182); + ADVANCE(184); if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - SKIP(183); + SKIP(185); if (lookahead == 'i') ADVANCE(145); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(181); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 183: - if (lookahead == '\n') - SKIP(181); + SKIP(183); END_STATE(); case 184: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 185: + if (lookahead == '\n') + SKIP(183); + END_STATE(); + case 186: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -2529,24 +2563,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - SKIP(185); + SKIP(187); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(184); + SKIP(186); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 185: + case 187: if (lookahead == '\n') - SKIP(184); + SKIP(186); END_STATE(); - case 186: + case 188: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -2570,7 +2604,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(187); + SKIP(189); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') @@ -2578,39 +2612,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(186); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 187: - if (lookahead == '\n') - SKIP(186); - END_STATE(); - case 188: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(152); - if (lookahead == '>') - ADVANCE(153); - if (lookahead == '\\') - SKIP(189); - if (lookahead == ']') - ADVANCE(134); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2630,8 +2631,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(6); if (lookahead == '\'') ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); if (lookahead == '<') ADVANCE(152); if (lookahead == '>') @@ -2639,7 +2638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(191); if (lookahead == ']') - ADVANCE(45); + ADVANCE(134); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || @@ -2665,6 +2664,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(6); if (lookahead == '\'') ADVANCE(14); + if (lookahead == ')') + ADVANCE(17); if (lookahead == '<') ADVANCE(152); if (lookahead == '>') @@ -2672,7 +2673,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(193); if (lookahead == ']') - ADVANCE(194); + ADVANCE(45); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || @@ -2690,10 +2691,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(192); END_STATE(); case 194: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(152); + if (lookahead == '>') + ADVANCE(153); + if (lookahead == '\\') + SKIP(195); + if (lookahead == ']') + ADVANCE(196); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(194); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 195: + if (lookahead == '\n') + SKIP(194); + END_STATE(); + case 196: if (lookahead == ']') ADVANCE(46); END_STATE(); - case 195: + case 197: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -2701,7 +2735,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); if (lookahead == '\'') ADVANCE(14); if (lookahead == ')') @@ -2711,7 +2745,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') - SKIP(197); + SKIP(199); if (lookahead == '`') ADVANCE(48); if (lookahead == '|') @@ -2720,71 +2754,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(195); + SKIP(197); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 196: + case 198: if (lookahead == '&') ADVANCE(11); if (lookahead == '>') ADVANCE(12); END_STATE(); - case 197: + case 199: if (lookahead == '\n') - SKIP(195); + SKIP(197); END_STATE(); - case 198: + case 200: if (lookahead == '#') ADVANCE(121); if (lookahead == '&') ADVANCE(131); if (lookahead == ')') ADVANCE(17); - if (lookahead == '\\') - SKIP(199); - if (lookahead == '|') - ADVANCE(116); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(198); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 199: - if (lookahead == '\n') - SKIP(198); - END_STATE(); - case 200: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(196); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); if (lookahead == '\\') SKIP(201); - if (lookahead == '`') - ADVANCE(48); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || @@ -2794,7 +2788,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(200); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); case 201: @@ -2809,13 +2804,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); if (lookahead == '\'') ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(123); + ADVANCE(30); if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') @@ -2846,11 +2843,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); if (lookahead == '\'') ADVANCE(14); + if (lookahead == ')') + ADVANCE(17); if (lookahead == '<') - ADVANCE(30); + ADVANCE(123); if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') @@ -2874,10 +2873,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(204); END_STATE(); case 206: + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); if (lookahead == '&') - ADVANCE(131); + ADVANCE(198); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(30); + if (lookahead == '>') + ADVANCE(36); if (lookahead == '\\') SKIP(207); if (lookahead == '`') @@ -2899,22 +2908,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(206); END_STATE(); case 208: - if (lookahead == '\"') - ADVANCE(4); if (lookahead == '#') ADVANCE(121); - if (lookahead == '$') - ADVANCE(6); if (lookahead == '&') - ADVANCE(196); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); + ADVANCE(131); if (lookahead == '\\') SKIP(209); if (lookahead == '`') @@ -2943,11 +2940,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); if (lookahead == '\'') ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); if (lookahead == '<') - ADVANCE(123); + ADVANCE(30); if (lookahead == '>') ADVANCE(36); if (lookahead == '\\') @@ -2971,21 +2970,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(210); END_STATE(); case 212: + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(198); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(123); + if (lookahead == '>') + ADVANCE(36); if (lookahead == '\\') SKIP(213); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 213: if (lookahead == '\n') SKIP(212); END_STATE(); case 214: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '\\') + SKIP(215); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(214); + END_STATE(); + case 215: + if (lookahead == '\n') + SKIP(214); + END_STATE(); + case 216: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -2997,37 +3031,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(215); + ADVANCE(217); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') - SKIP(217); + SKIP(219); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(214); + SKIP(216); END_STATE(); - case 215: + case 217: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '<') ADVANCE(33); END_STATE(); - case 216: + case 218: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(37); if (lookahead == '>') ADVANCE(39); END_STATE(); - case 217: + case 219: if (lookahead == '\n') - SKIP(214); + SKIP(216); END_STATE(); - case 218: + case 220: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -3037,33 +3071,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(215); + ADVANCE(217); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') - SKIP(219); + SKIP(221); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(218); - END_STATE(); - case 219: - if (lookahead == '\n') - SKIP(218); - END_STATE(); - case 220: - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '\\') - SKIP(221); - if (lookahead == ']') - ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(220); END_STATE(); case 221: @@ -3071,6 +3088,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(220); END_STATE(); case 222: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '\\') + SKIP(223); + if (lookahead == ']') + ADVANCE(134); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(222); + END_STATE(); + case 223: + if (lookahead == '\n') + SKIP(222); + END_STATE(); + case 224: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3085,65 +3119,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(152); if (lookahead == '>') ADVANCE(153); - if (lookahead == '\\') - SKIP(223); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 223: - if (lookahead == '\n') - SKIP(222); - END_STATE(); - case 224: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(122); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(123); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '[') - ADVANCE(42); if (lookahead == '\\') SKIP(225); if (lookahead == '`') ADVANCE(48); - if (lookahead == 'c') - ADVANCE(49); - if (lookahead == 'd') - ADVANCE(53); - if (lookahead == 'e') - ADVANCE(126); - if (lookahead == 'f') - ADVANCE(127); - if (lookahead == 'i') - ADVANCE(88); - if (lookahead == 'l') - ADVANCE(90); - if (lookahead == 'r') - ADVANCE(95); - if (lookahead == 't') - ADVANCE(103); - if (lookahead == 'w') - ADVANCE(110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3184,11 +3163,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(49); if (lookahead == 'd') - ADVANCE(125); + ADVANCE(53); if (lookahead == 'e') - ADVANCE(228); + ADVANCE(126); if (lookahead == 'f') - ADVANCE(77); + ADVANCE(127); if (lookahead == 'i') ADVANCE(88); if (lookahead == 'l') @@ -3214,18 +3193,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(226); END_STATE(); case 228: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(64); - if (lookahead == 'x') - ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 229: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3245,7 +3212,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(42); if (lookahead == '\\') - SKIP(230); + SKIP(229); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == 'c') + ADVANCE(49); + if (lookahead == 'd') + ADVANCE(125); + if (lookahead == 'e') + ADVANCE(230); + if (lookahead == 'f') + ADVANCE(77); + if (lookahead == 'i') + ADVANCE(88); + if (lookahead == 'l') + ADVANCE(90); + if (lookahead == 'r') + ADVANCE(95); + if (lookahead == 't') + ADVANCE(103); + if (lookahead == 'w') + ADVANCE(110); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(228); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 229: + if (lookahead == '\n') + SKIP(228); + END_STATE(); + case 230: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') + ADVANCE(64); + if (lookahead == 'x') + ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(24); + END_STATE(); + case 231: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '&') + ADVANCE(122); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '(') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(123); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + SKIP(232); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') @@ -3272,17 +3306,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(229); + SKIP(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 230: + case 232: if (lookahead == '\n') - SKIP(229); + SKIP(231); END_STATE(); - case 231: + case 233: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -3292,28 +3326,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(232); + ADVANCE(234); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') - SKIP(233); + SKIP(235); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(231); + SKIP(233); END_STATE(); - case 232: + case 234: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); END_STATE(); - case 233: + case 235: if (lookahead == '\n') - SKIP(231); + SKIP(233); END_STATE(); - case 234: + case 236: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3335,7 +3369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(42); if (lookahead == '\\') - SKIP(235); + SKIP(237); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') @@ -3356,39 +3390,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(103); if (lookahead == 'w') ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(234); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 235: - if (lookahead == '\n') - SKIP(234); - END_STATE(); - case 236: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(152); - if (lookahead == '>') - ADVANCE(153); - if (lookahead == '\\') - SKIP(237); - if (lookahead == '`') - ADVANCE(48); - if (lookahead == '}') - ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3404,18 +3405,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(236); END_STATE(); case 238: + if (lookahead == '\"') + ADVANCE(4); if (lookahead == '#') ADVANCE(121); - if (lookahead == '&') - ADVANCE(131); - if (lookahead == ')') - ADVANCE(17); + if (lookahead == '$') + ADVANCE(6); + if (lookahead == '\'') + ADVANCE(14); + if (lookahead == '<') + ADVANCE(152); + if (lookahead == '>') + ADVANCE(153); if (lookahead == '\\') SKIP(239); if (lookahead == '`') ADVANCE(48); - if (lookahead == '|') - ADVANCE(116); + if (lookahead == '}') + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3434,13 +3441,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(121); if (lookahead == '&') - ADVANCE(196); + ADVANCE(131); if (lookahead == ')') ADVANCE(17); - if (lookahead == '<') - ADVANCE(215); - if (lookahead == '>') - ADVANCE(216); if (lookahead == '\\') SKIP(241); if (lookahead == '`') @@ -3452,6 +3455,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(24); END_STATE(); case 241: if (lookahead == '\n') @@ -3461,15 +3468,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(121); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); if (lookahead == ')') ADVANCE(17); if (lookahead == '<') - ADVANCE(215); + ADVANCE(217); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') SKIP(243); + if (lookahead == '`') + ADVANCE(48); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || @@ -3486,15 +3495,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(121); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); + if (lookahead == ')') + ADVANCE(17); if (lookahead == '<') - ADVANCE(215); + ADVANCE(217); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') SKIP(245); - if (lookahead == '`') - ADVANCE(48); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || @@ -3510,10 +3519,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 246: if (lookahead == '#') ADVANCE(121); - if (lookahead == '$') - ADVANCE(247); + if (lookahead == '&') + ADVANCE(198); + if (lookahead == '<') + ADVANCE(217); + if (lookahead == '>') + ADVANCE(218); if (lookahead == '\\') - SKIP(248); + SKIP(247); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3521,41 +3538,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(246); END_STATE(); case 247: + if (lookahead == '\n') + SKIP(246); + END_STATE(); + case 248: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '$') + ADVANCE(249); + if (lookahead == '\\') + SKIP(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(248); + END_STATE(); + case 249: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(8); END_STATE(); - case 248: + case 250: if (lookahead == '\n') - SKIP(246); + SKIP(248); END_STATE(); - case 249: + case 251: if (lookahead == '#') ADVANCE(121); if (lookahead == ')') ADVANCE(17); if (lookahead == '\\') - SKIP(250); + SKIP(252); if (lookahead == ']') ADVANCE(134); if (lookahead == '|') - ADVANCE(251); + ADVANCE(253); if (lookahead == '}') ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(249); - END_STATE(); - case 250: - if (lookahead == '\n') - SKIP(249); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_PIPE); + SKIP(251); END_STATE(); case 252: + if (lookahead == '\n') + SKIP(251); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 254: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -3565,7 +3599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(6); if (lookahead == '&') - ADVANCE(182); + ADVANCE(184); if (lookahead == '\'') ADVANCE(14); if (lookahead == ';') @@ -3575,23 +3609,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(153); if (lookahead == '\\') - SKIP(253); + SKIP(255); if (lookahead == '`') ADVANCE(48); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(252); + SKIP(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 253: + case 255: if (lookahead == '\n') - SKIP(252); + SKIP(254); END_STATE(); - case 254: + case 256: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3611,7 +3645,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(42); if (lookahead == '\\') - SKIP(255); + SKIP(257); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') @@ -3636,17 +3670,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(254); + SKIP(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 255: + case 257: if (lookahead == '\n') - SKIP(254); + SKIP(256); END_STATE(); - case 256: + case 258: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3660,26 +3694,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(153); if (lookahead == '\\') - SKIP(257); + SKIP(259); if (lookahead == '`') ADVANCE(48); if (lookahead == 'e') - ADVANCE(258); + ADVANCE(260); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(256); + SKIP(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 257: + case 259: if (lookahead == '\n') - SKIP(256); + SKIP(258); END_STATE(); - case 258: + case 260: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(69); @@ -3689,7 +3723,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 259: + case 261: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -3701,33 +3735,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(232); + ADVANCE(234); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') - SKIP(260); + SKIP(262); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(259); - END_STATE(); - case 260: - if (lookahead == '\n') - SKIP(259); - END_STATE(); - case 261: - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '\\') - SKIP(262); - if (lookahead == '}') - ADVANCE(119); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(261); END_STATE(); case 262: @@ -3737,18 +3754,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 263: if (lookahead == '#') ADVANCE(121); - if (lookahead == '&') - ADVANCE(196); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(232); - if (lookahead == '>') - ADVANCE(216); if (lookahead == '\\') SKIP(264); - if (lookahead == '|') - ADVANCE(116); + if (lookahead == '}') + ADVANCE(119); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3763,15 +3772,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(121); if (lookahead == '&') - ADVANCE(196); + ADVANCE(198); + if (lookahead == ')') + ADVANCE(17); if (lookahead == '<') - ADVANCE(232); + ADVANCE(234); if (lookahead == '>') - ADVANCE(216); + ADVANCE(218); if (lookahead == '\\') SKIP(266); - if (lookahead == '`') - ADVANCE(48); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || @@ -3787,12 +3796,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 267: if (lookahead == '#') ADVANCE(121); - if (lookahead == ')') - ADVANCE(17); + if (lookahead == '&') + ADVANCE(198); + if (lookahead == '<') + ADVANCE(234); + if (lookahead == '>') + ADVANCE(218); if (lookahead == '\\') SKIP(268); + if (lookahead == '`') + ADVANCE(48); if (lookahead == '|') - ADVANCE(251); + ADVANCE(116); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3804,19 +3819,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(267); END_STATE(); case 269: - if (lookahead == '\n') - ADVANCE(2); if (lookahead == '#') ADVANCE(121); - if (lookahead == '&') - ADVANCE(156); - if (lookahead == ';') - ADVANCE(28); + if (lookahead == ')') + ADVANCE(17); if (lookahead == '\\') SKIP(270); if (lookahead == '|') - ADVANCE(116); + ADVANCE(253); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(269); @@ -3826,24 +3838,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(269); END_STATE(); case 271: + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') ADVANCE(121); if (lookahead == '&') - ADVANCE(196); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(232); - if (lookahead == '>') - ADVANCE(216); + ADVANCE(156); + if (lookahead == ';') + ADVANCE(28); if (lookahead == '\\') SKIP(272); - if (lookahead == '`') - ADVANCE(48); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(271); @@ -3853,6 +3860,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(271); END_STATE(); case 273: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(198); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '<') + ADVANCE(234); + if (lookahead == '>') + ADVANCE(218); + if (lookahead == '\\') + SKIP(274); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(273); + END_STATE(); + case 274: + if (lookahead == '\n') + SKIP(273); + END_STATE(); + case 275: if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') @@ -3866,7 +3900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(16); if (lookahead == ';') - ADVANCE(169); + ADVANCE(171); if (lookahead == '<') ADVANCE(123); if (lookahead == '>') @@ -3874,7 +3908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(42); if (lookahead == '\\') - SKIP(274); + SKIP(276); if (lookahead == '`') ADVANCE(48); if (lookahead == 'c') @@ -3899,17 +3933,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(273); + SKIP(275); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 274: + case 276: if (lookahead == '\n') - SKIP(273); + SKIP(275); END_STATE(); - case 275: + case 277: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -3920,32 +3954,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(17); if (lookahead == ';') ADVANCE(28); - if (lookahead == '\\') - SKIP(276); - if (lookahead == '|') - ADVANCE(116); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(275); - END_STATE(); - case 276: - if (lookahead == '\n') - SKIP(275); - END_STATE(); - case 277: - if (lookahead == '#') - ADVANCE(121); - if (lookahead == '&') - ADVANCE(131); - if (lookahead == ')') - ADVANCE(17); if (lookahead == '\\') SKIP(278); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(277); @@ -3959,10 +3972,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(121); if (lookahead == '&') ADVANCE(131); + if (lookahead == ')') + ADVANCE(17); if (lookahead == '\\') SKIP(280); - if (lookahead == '`') - ADVANCE(48); if (lookahead == '|') ADVANCE(116); if (lookahead == '\t' || @@ -3980,8 +3993,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(121); if (lookahead == '&') ADVANCE(131); - if (lookahead == ')') - ADVANCE(17); if (lookahead == '\\') SKIP(282); if (lookahead == '`') @@ -3998,6 +4009,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(281); END_STATE(); + case 283: + if (lookahead == '#') + ADVANCE(121); + if (lookahead == '&') + ADVANCE(131); + if (lookahead == ')') + ADVANCE(17); + if (lookahead == '\\') + SKIP(284); + if (lookahead == '`') + ADVANCE(48); + if (lookahead == '|') + ADVANCE(116); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(283); + END_STATE(); + case 284: + if (lookahead == '\n') + SKIP(283); + END_STATE(); default: return false; } @@ -4020,96 +4054,96 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 155, .external_lex_state = 5}, [14] = {.lex_state = 151, .external_lex_state = 4}, [15] = {.lex_state = 158}, - [16] = {.lex_state = 163}, - [17] = {.lex_state = 163}, + [16] = {.lex_state = 165}, + [17] = {.lex_state = 165}, [18] = {.lex_state = 120, .external_lex_state = 2}, [19] = {.lex_state = 120, .external_lex_state = 2}, [20] = {.lex_state = 120, .external_lex_state = 2}, - [21] = {.lex_state = 166, .external_lex_state = 3}, + [21] = {.lex_state = 168, .external_lex_state = 3}, [22] = {.lex_state = 120}, - [23] = {.lex_state = 168, .external_lex_state = 6}, + [23] = {.lex_state = 170, .external_lex_state = 6}, [24] = {.lex_state = 155, .external_lex_state = 7}, [25] = {.lex_state = 128, .external_lex_state = 8}, - [26] = {.lex_state = 171, .external_lex_state = 9}, + [26] = {.lex_state = 173, .external_lex_state = 9}, [27] = {.lex_state = 130}, - [28] = {.lex_state = 173, .external_lex_state = 2}, - [29] = {.lex_state = 175, .external_lex_state = 8}, + [28] = {.lex_state = 175, .external_lex_state = 2}, + [29] = {.lex_state = 177, .external_lex_state = 8}, [30] = {.lex_state = 120, .external_lex_state = 2}, - [31] = {.lex_state = 173, .external_lex_state = 2}, + [31] = {.lex_state = 175, .external_lex_state = 2}, [32] = {.lex_state = 151, .external_lex_state = 4}, [33] = {.lex_state = 151, .external_lex_state = 4}, [34] = {.lex_state = 128, .external_lex_state = 3}, [35] = {.lex_state = 151, .external_lex_state = 4}, - [36] = {.lex_state = 177, .external_lex_state = 10}, - [37] = {.lex_state = 179, .external_lex_state = 9}, + [36] = {.lex_state = 179, .external_lex_state = 10}, + [37] = {.lex_state = 181, .external_lex_state = 9}, [38] = {.lex_state = 130}, [39] = {.lex_state = 130}, [40] = {.lex_state = 155, .external_lex_state = 7}, - [41] = {.lex_state = 171, .external_lex_state = 9}, + [41] = {.lex_state = 173, .external_lex_state = 9}, [42] = {.lex_state = 130}, - [43] = {.lex_state = 181, .external_lex_state = 11}, + [43] = {.lex_state = 183, .external_lex_state = 11}, [44] = {.lex_state = 158}, - [45] = {.lex_state = 163}, - [46] = {.lex_state = 163}, + [45] = {.lex_state = 165}, + [46] = {.lex_state = 165}, [47] = {.lex_state = 120, .external_lex_state = 2}, [48] = {.lex_state = 120, .external_lex_state = 2}, [49] = {.lex_state = 120, .external_lex_state = 2}, - [50] = {.lex_state = 181, .external_lex_state = 11}, - [51] = {.lex_state = 181, .external_lex_state = 7}, + [50] = {.lex_state = 183, .external_lex_state = 11}, + [51] = {.lex_state = 183, .external_lex_state = 7}, [52] = {.lex_state = 130}, - [53] = {.lex_state = 175, .external_lex_state = 3}, + [53] = {.lex_state = 177, .external_lex_state = 3}, [54] = {.lex_state = 130}, [55] = {.lex_state = 151}, - [56] = {.lex_state = 184, .external_lex_state = 5}, - [57] = {.lex_state = 186, .external_lex_state = 3}, - [58] = {.lex_state = 184, .external_lex_state = 7}, - [59] = {.lex_state = 175, .external_lex_state = 8}, - [60] = {.lex_state = 179, .external_lex_state = 9}, + [56] = {.lex_state = 186, .external_lex_state = 5}, + [57] = {.lex_state = 188, .external_lex_state = 3}, + [58] = {.lex_state = 186, .external_lex_state = 7}, + [59] = {.lex_state = 177, .external_lex_state = 8}, + [60] = {.lex_state = 181, .external_lex_state = 9}, [61] = {.lex_state = 130}, [62] = {.lex_state = 120, .external_lex_state = 2}, - [63] = {.lex_state = 173, .external_lex_state = 2}, - [64] = {.lex_state = 188, .external_lex_state = 12}, + [63] = {.lex_state = 175, .external_lex_state = 2}, + [64] = {.lex_state = 190, .external_lex_state = 12}, [65] = {.lex_state = 158}, - [66] = {.lex_state = 163}, - [67] = {.lex_state = 163}, + [66] = {.lex_state = 165}, + [67] = {.lex_state = 165}, [68] = {.lex_state = 120, .external_lex_state = 2}, [69] = {.lex_state = 120, .external_lex_state = 2}, [70] = {.lex_state = 120, .external_lex_state = 2}, - [71] = {.lex_state = 188, .external_lex_state = 12}, - [72] = {.lex_state = 190, .external_lex_state = 13}, - [73] = {.lex_state = 188, .external_lex_state = 14}, - [74] = {.lex_state = 192, .external_lex_state = 15}, - [75] = {.lex_state = 192, .external_lex_state = 15}, - [76] = {.lex_state = 192, .external_lex_state = 16}, - [77] = {.lex_state = 184, .external_lex_state = 5}, + [71] = {.lex_state = 190, .external_lex_state = 12}, + [72] = {.lex_state = 192, .external_lex_state = 13}, + [73] = {.lex_state = 190, .external_lex_state = 14}, + [74] = {.lex_state = 194, .external_lex_state = 15}, + [75] = {.lex_state = 194, .external_lex_state = 15}, + [76] = {.lex_state = 194, .external_lex_state = 16}, + [77] = {.lex_state = 186, .external_lex_state = 5}, [78] = {.lex_state = 130}, - [79] = {.lex_state = 184, .external_lex_state = 5}, + [79] = {.lex_state = 186, .external_lex_state = 5}, [80] = {.lex_state = 130}, [81] = {.lex_state = 155, .external_lex_state = 5}, - [82] = {.lex_state = 173, .external_lex_state = 17}, + [82] = {.lex_state = 175, .external_lex_state = 17}, [83] = {.lex_state = 158}, - [84] = {.lex_state = 163}, - [85] = {.lex_state = 163}, + [84] = {.lex_state = 165}, + [85] = {.lex_state = 165}, [86] = {.lex_state = 120, .external_lex_state = 2}, [87] = {.lex_state = 120, .external_lex_state = 2}, [88] = {.lex_state = 120, .external_lex_state = 2}, - [89] = {.lex_state = 173, .external_lex_state = 17}, - [90] = {.lex_state = 173, .external_lex_state = 2}, - [91] = {.lex_state = 175, .external_lex_state = 3}, + [89] = {.lex_state = 175, .external_lex_state = 17}, + [90] = {.lex_state = 175, .external_lex_state = 2}, + [91] = {.lex_state = 177, .external_lex_state = 3}, [92] = {.lex_state = 158}, - [93] = {.lex_state = 163}, - [94] = {.lex_state = 163}, + [93] = {.lex_state = 165}, + [94] = {.lex_state = 165}, [95] = {.lex_state = 120, .external_lex_state = 2}, [96] = {.lex_state = 120, .external_lex_state = 2}, [97] = {.lex_state = 158}, - [98] = {.lex_state = 175, .external_lex_state = 3}, - [99] = {.lex_state = 175, .external_lex_state = 3}, - [100] = {.lex_state = 175, .external_lex_state = 3}, + [98] = {.lex_state = 177, .external_lex_state = 3}, + [99] = {.lex_state = 177, .external_lex_state = 3}, + [100] = {.lex_state = 177, .external_lex_state = 3}, [101] = {.lex_state = 130, .external_lex_state = 18}, - [102] = {.lex_state = 163, .external_lex_state = 18}, + [102] = {.lex_state = 165, .external_lex_state = 18}, [103] = {.lex_state = 130, .external_lex_state = 18}, [104] = {.lex_state = 130, .external_lex_state = 18}, - [105] = {.lex_state = 195, .external_lex_state = 19}, + [105] = {.lex_state = 197, .external_lex_state = 19}, [106] = {.lex_state = 130}, [107] = {.lex_state = 151}, [108] = {.lex_state = 120, .external_lex_state = 2}, @@ -4119,1553 +4153,1553 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [112] = {.lex_state = 120, .external_lex_state = 2}, [113] = {.lex_state = 151, .external_lex_state = 4}, [114] = {.lex_state = 151, .external_lex_state = 4}, - [115] = {.lex_state = 198, .external_lex_state = 20}, + [115] = {.lex_state = 200, .external_lex_state = 20}, [116] = {.lex_state = 158}, - [117] = {.lex_state = 163}, - [118] = {.lex_state = 163}, + [117] = {.lex_state = 165}, + [118] = {.lex_state = 165}, [119] = {.lex_state = 120, .external_lex_state = 2}, [120] = {.lex_state = 120, .external_lex_state = 2}, [121] = {.lex_state = 120, .external_lex_state = 2}, - [122] = {.lex_state = 200, .external_lex_state = 19}, + [122] = {.lex_state = 202, .external_lex_state = 19}, [123] = {.lex_state = 130}, - [124] = {.lex_state = 195, .external_lex_state = 21}, - [125] = {.lex_state = 202, .external_lex_state = 2}, + [124] = {.lex_state = 197, .external_lex_state = 21}, + [125] = {.lex_state = 204, .external_lex_state = 2}, [126] = {.lex_state = 130}, - [127] = {.lex_state = 195, .external_lex_state = 21}, - [128] = {.lex_state = 173, .external_lex_state = 2}, - [129] = {.lex_state = 204, .external_lex_state = 19}, + [127] = {.lex_state = 197, .external_lex_state = 21}, + [128] = {.lex_state = 175, .external_lex_state = 2}, + [129] = {.lex_state = 206, .external_lex_state = 19}, [130] = {.lex_state = 130}, [131] = {.lex_state = 151}, - [132] = {.lex_state = 206, .external_lex_state = 20}, - [133] = {.lex_state = 208, .external_lex_state = 19}, + [132] = {.lex_state = 208, .external_lex_state = 20}, + [133] = {.lex_state = 210, .external_lex_state = 19}, [134] = {.lex_state = 130}, - [135] = {.lex_state = 204, .external_lex_state = 21}, - [136] = {.lex_state = 210, .external_lex_state = 2}, + [135] = {.lex_state = 206, .external_lex_state = 21}, + [136] = {.lex_state = 212, .external_lex_state = 2}, [137] = {.lex_state = 130}, - [138] = {.lex_state = 173, .external_lex_state = 2}, + [138] = {.lex_state = 175, .external_lex_state = 2}, [139] = {.lex_state = 130}, - [140] = {.lex_state = 202, .external_lex_state = 2}, + [140] = {.lex_state = 204, .external_lex_state = 2}, [141] = {.lex_state = 130}, [142] = {.lex_state = 128, .external_lex_state = 3}, [143] = {.lex_state = 120, .external_lex_state = 2}, - [144] = {.lex_state = 168, .external_lex_state = 6}, + [144] = {.lex_state = 170, .external_lex_state = 6}, [145] = {.lex_state = 120, .external_lex_state = 2}, [146] = {.lex_state = 120}, [147] = {.lex_state = 128, .external_lex_state = 3}, [148] = {.lex_state = 151, .external_lex_state = 4}, - [149] = {.lex_state = 212, .external_lex_state = 22}, + [149] = {.lex_state = 214, .external_lex_state = 22}, [150] = {.lex_state = 128, .external_lex_state = 3}, - [151] = {.lex_state = 214, .external_lex_state = 23}, - [152] = {.lex_state = 175, .external_lex_state = 8}, + [151] = {.lex_state = 216, .external_lex_state = 23}, + [152] = {.lex_state = 177, .external_lex_state = 8}, [153] = {.lex_state = 128, .external_lex_state = 8}, - [154] = {.lex_state = 218, .external_lex_state = 23}, + [154] = {.lex_state = 220, .external_lex_state = 23}, [155] = {.lex_state = 120, .external_lex_state = 2}, [156] = {.lex_state = 130}, [157] = {.lex_state = 128, .external_lex_state = 3}, [158] = {.lex_state = 128, .external_lex_state = 8}, [159] = {.lex_state = 130}, - [160] = {.lex_state = 173, .external_lex_state = 2}, - [161] = {.lex_state = 173, .external_lex_state = 17}, - [162] = {.lex_state = 173, .external_lex_state = 17}, - [163] = {.lex_state = 173, .external_lex_state = 2}, - [164] = {.lex_state = 175, .external_lex_state = 3}, - [165] = {.lex_state = 175, .external_lex_state = 3}, + [160] = {.lex_state = 175, .external_lex_state = 2}, + [161] = {.lex_state = 175, .external_lex_state = 17}, + [162] = {.lex_state = 175, .external_lex_state = 17}, + [163] = {.lex_state = 175, .external_lex_state = 2}, + [164] = {.lex_state = 177, .external_lex_state = 3}, + [165] = {.lex_state = 177, .external_lex_state = 3}, [166] = {.lex_state = 128, .external_lex_state = 3}, - [167] = {.lex_state = 220, .external_lex_state = 24}, + [167] = {.lex_state = 222, .external_lex_state = 24}, [168] = {.lex_state = 158}, - [169] = {.lex_state = 163}, - [170] = {.lex_state = 163}, + [169] = {.lex_state = 165}, + [170] = {.lex_state = 165}, [171] = {.lex_state = 120, .external_lex_state = 2}, [172] = {.lex_state = 120, .external_lex_state = 2}, [173] = {.lex_state = 120, .external_lex_state = 2}, - [174] = {.lex_state = 220, .external_lex_state = 24}, + [174] = {.lex_state = 222, .external_lex_state = 24}, [175] = {.lex_state = 130, .external_lex_state = 25}, - [176] = {.lex_state = 171, .external_lex_state = 26}, - [177] = {.lex_state = 179, .external_lex_state = 9}, - [178] = {.lex_state = 222, .external_lex_state = 4}, + [176] = {.lex_state = 173, .external_lex_state = 26}, + [177] = {.lex_state = 181, .external_lex_state = 9}, + [178] = {.lex_state = 224, .external_lex_state = 4}, [179] = {.lex_state = 158}, - [180] = {.lex_state = 163}, - [181] = {.lex_state = 163}, + [180] = {.lex_state = 165}, + [181] = {.lex_state = 165}, [182] = {.lex_state = 120, .external_lex_state = 2}, [183] = {.lex_state = 120, .external_lex_state = 2}, [184] = {.lex_state = 120, .external_lex_state = 2}, - [185] = {.lex_state = 171, .external_lex_state = 26}, + [185] = {.lex_state = 173, .external_lex_state = 26}, [186] = {.lex_state = 151, .external_lex_state = 4}, - [187] = {.lex_state = 224, .external_lex_state = 2}, - [188] = {.lex_state = 184, .external_lex_state = 7}, + [187] = {.lex_state = 226, .external_lex_state = 2}, + [188] = {.lex_state = 186, .external_lex_state = 7}, [189] = {.lex_state = 130}, - [190] = {.lex_state = 226, .external_lex_state = 2}, + [190] = {.lex_state = 228, .external_lex_state = 2}, [191] = {.lex_state = 151, .external_lex_state = 4}, - [192] = {.lex_state = 181, .external_lex_state = 7}, + [192] = {.lex_state = 183, .external_lex_state = 7}, [193] = {.lex_state = 130}, - [194] = {.lex_state = 181, .external_lex_state = 11}, - [195] = {.lex_state = 181, .external_lex_state = 11}, + [194] = {.lex_state = 183, .external_lex_state = 11}, + [195] = {.lex_state = 183, .external_lex_state = 11}, [196] = {.lex_state = 158}, - [197] = {.lex_state = 181, .external_lex_state = 11}, - [198] = {.lex_state = 181, .external_lex_state = 11}, - [199] = {.lex_state = 181, .external_lex_state = 11}, - [200] = {.lex_state = 163, .external_lex_state = 18}, + [197] = {.lex_state = 183, .external_lex_state = 11}, + [198] = {.lex_state = 183, .external_lex_state = 11}, + [199] = {.lex_state = 183, .external_lex_state = 11}, + [200] = {.lex_state = 165, .external_lex_state = 18}, [201] = {.lex_state = 130, .external_lex_state = 18}, [202] = {.lex_state = 130, .external_lex_state = 18}, [203] = {.lex_state = 130}, - [204] = {.lex_state = 202, .external_lex_state = 2}, + [204] = {.lex_state = 204, .external_lex_state = 2}, [205] = {.lex_state = 130}, - [206] = {.lex_state = 210, .external_lex_state = 2}, + [206] = {.lex_state = 212, .external_lex_state = 2}, [207] = {.lex_state = 130}, - [208] = {.lex_state = 202, .external_lex_state = 2}, - [209] = {.lex_state = 181, .external_lex_state = 7}, + [208] = {.lex_state = 204, .external_lex_state = 2}, + [209] = {.lex_state = 183, .external_lex_state = 7}, [210] = {.lex_state = 130}, - [211] = {.lex_state = 181, .external_lex_state = 11}, + [211] = {.lex_state = 183, .external_lex_state = 11}, [212] = {.lex_state = 130}, - [213] = {.lex_state = 229, .external_lex_state = 6}, - [214] = {.lex_state = 231, .external_lex_state = 23}, - [215] = {.lex_state = 175, .external_lex_state = 3}, - [216] = {.lex_state = 177, .external_lex_state = 10}, + [213] = {.lex_state = 231, .external_lex_state = 6}, + [214] = {.lex_state = 233, .external_lex_state = 23}, + [215] = {.lex_state = 177, .external_lex_state = 3}, + [216] = {.lex_state = 179, .external_lex_state = 10}, [217] = {.lex_state = 130}, [218] = {.lex_state = 130}, [219] = {.lex_state = 130}, - [220] = {.lex_state = 184, .external_lex_state = 5}, + [220] = {.lex_state = 186, .external_lex_state = 5}, [221] = {.lex_state = 130}, - [222] = {.lex_state = 175, .external_lex_state = 3}, + [222] = {.lex_state = 177, .external_lex_state = 3}, [223] = {.lex_state = 120, .external_lex_state = 2}, - [224] = {.lex_state = 184, .external_lex_state = 7}, - [225] = {.lex_state = 234, .external_lex_state = 2}, + [224] = {.lex_state = 186, .external_lex_state = 7}, + [225] = {.lex_state = 236, .external_lex_state = 2}, [226] = {.lex_state = 120, .external_lex_state = 2}, [227] = {.lex_state = 120}, - [228] = {.lex_state = 175, .external_lex_state = 3}, + [228] = {.lex_state = 177, .external_lex_state = 3}, [229] = {.lex_state = 151, .external_lex_state = 4}, - [230] = {.lex_state = 175, .external_lex_state = 3}, - [231] = {.lex_state = 175, .external_lex_state = 8}, - [232] = {.lex_state = 214, .external_lex_state = 23}, - [233] = {.lex_state = 184, .external_lex_state = 7}, - [234] = {.lex_state = 179, .external_lex_state = 9}, + [230] = {.lex_state = 177, .external_lex_state = 3}, + [231] = {.lex_state = 177, .external_lex_state = 8}, + [232] = {.lex_state = 216, .external_lex_state = 23}, + [233] = {.lex_state = 186, .external_lex_state = 7}, + [234] = {.lex_state = 181, .external_lex_state = 9}, [235] = {.lex_state = 120, .external_lex_state = 2}, - [236] = {.lex_state = 175, .external_lex_state = 3}, - [237] = {.lex_state = 175, .external_lex_state = 8}, + [236] = {.lex_state = 177, .external_lex_state = 3}, + [237] = {.lex_state = 177, .external_lex_state = 8}, [238] = {.lex_state = 151, .external_lex_state = 4}, - [239] = {.lex_state = 188, .external_lex_state = 12}, - [240] = {.lex_state = 190, .external_lex_state = 27}, + [239] = {.lex_state = 190, .external_lex_state = 12}, + [240] = {.lex_state = 192, .external_lex_state = 27}, [241] = {.lex_state = 158}, - [242] = {.lex_state = 190, .external_lex_state = 27}, - [243] = {.lex_state = 190, .external_lex_state = 27}, - [244] = {.lex_state = 190, .external_lex_state = 27}, - [245] = {.lex_state = 163, .external_lex_state = 18}, + [242] = {.lex_state = 192, .external_lex_state = 27}, + [243] = {.lex_state = 192, .external_lex_state = 27}, + [244] = {.lex_state = 192, .external_lex_state = 27}, + [245] = {.lex_state = 165, .external_lex_state = 18}, [246] = {.lex_state = 130, .external_lex_state = 18}, [247] = {.lex_state = 130, .external_lex_state = 18}, [248] = {.lex_state = 130}, - [249] = {.lex_state = 202, .external_lex_state = 2}, + [249] = {.lex_state = 204, .external_lex_state = 2}, [250] = {.lex_state = 130}, - [251] = {.lex_state = 210, .external_lex_state = 2}, + [251] = {.lex_state = 212, .external_lex_state = 2}, [252] = {.lex_state = 130}, - [253] = {.lex_state = 202, .external_lex_state = 2}, - [254] = {.lex_state = 188, .external_lex_state = 12}, - [255] = {.lex_state = 184, .external_lex_state = 7}, - [256] = {.lex_state = 188, .external_lex_state = 14}, - [257] = {.lex_state = 192, .external_lex_state = 15}, - [258] = {.lex_state = 192, .external_lex_state = 15}, - [259] = {.lex_state = 192, .external_lex_state = 16}, - [260] = {.lex_state = 177, .external_lex_state = 10}, - [261] = {.lex_state = 184, .external_lex_state = 5}, + [253] = {.lex_state = 204, .external_lex_state = 2}, + [254] = {.lex_state = 190, .external_lex_state = 12}, + [255] = {.lex_state = 186, .external_lex_state = 7}, + [256] = {.lex_state = 190, .external_lex_state = 14}, + [257] = {.lex_state = 194, .external_lex_state = 15}, + [258] = {.lex_state = 194, .external_lex_state = 15}, + [259] = {.lex_state = 194, .external_lex_state = 16}, + [260] = {.lex_state = 179, .external_lex_state = 10}, + [261] = {.lex_state = 186, .external_lex_state = 5}, [262] = {.lex_state = 155, .external_lex_state = 5}, [263] = {.lex_state = 151, .external_lex_state = 4}, - [264] = {.lex_state = 173, .external_lex_state = 17}, - [265] = {.lex_state = 202, .external_lex_state = 17}, + [264] = {.lex_state = 175, .external_lex_state = 17}, + [265] = {.lex_state = 204, .external_lex_state = 17}, [266] = {.lex_state = 158}, - [267] = {.lex_state = 202, .external_lex_state = 17}, - [268] = {.lex_state = 202, .external_lex_state = 17}, - [269] = {.lex_state = 202, .external_lex_state = 17}, - [270] = {.lex_state = 163, .external_lex_state = 18}, + [267] = {.lex_state = 204, .external_lex_state = 17}, + [268] = {.lex_state = 204, .external_lex_state = 17}, + [269] = {.lex_state = 204, .external_lex_state = 17}, + [270] = {.lex_state = 165, .external_lex_state = 18}, [271] = {.lex_state = 130, .external_lex_state = 18}, [272] = {.lex_state = 130, .external_lex_state = 18}, [273] = {.lex_state = 130}, - [274] = {.lex_state = 202, .external_lex_state = 2}, + [274] = {.lex_state = 204, .external_lex_state = 2}, [275] = {.lex_state = 130}, - [276] = {.lex_state = 210, .external_lex_state = 2}, + [276] = {.lex_state = 212, .external_lex_state = 2}, [277] = {.lex_state = 130}, - [278] = {.lex_state = 202, .external_lex_state = 2}, - [279] = {.lex_state = 173, .external_lex_state = 17}, + [278] = {.lex_state = 204, .external_lex_state = 2}, + [279] = {.lex_state = 175, .external_lex_state = 17}, [280] = {.lex_state = 158}, [281] = {.lex_state = 158}, [282] = {.lex_state = 158}, - [283] = {.lex_state = 163, .external_lex_state = 18}, + [283] = {.lex_state = 165, .external_lex_state = 18}, [284] = {.lex_state = 130, .external_lex_state = 18}, [285] = {.lex_state = 130, .external_lex_state = 18}, [286] = {.lex_state = 130}, - [287] = {.lex_state = 202, .external_lex_state = 2}, + [287] = {.lex_state = 204, .external_lex_state = 2}, [288] = {.lex_state = 130}, - [289] = {.lex_state = 210, .external_lex_state = 2}, - [290] = {.lex_state = 175, .external_lex_state = 3}, + [289] = {.lex_state = 212, .external_lex_state = 2}, + [290] = {.lex_state = 177, .external_lex_state = 3}, [291] = {.lex_state = 158}, [292] = {.lex_state = 130, .external_lex_state = 18}, [293] = {.lex_state = 130, .external_lex_state = 18}, - [294] = {.lex_state = 175, .external_lex_state = 3}, + [294] = {.lex_state = 177, .external_lex_state = 3}, [295] = {.lex_state = 130}, - [296] = {.lex_state = 236, .external_lex_state = 28}, - [297] = {.lex_state = 175, .external_lex_state = 3}, + [296] = {.lex_state = 238, .external_lex_state = 28}, + [297] = {.lex_state = 177, .external_lex_state = 3}, [298] = {.lex_state = 130}, - [299] = {.lex_state = 236, .external_lex_state = 28}, + [299] = {.lex_state = 238, .external_lex_state = 28}, [300] = {.lex_state = 151, .external_lex_state = 4}, - [301] = {.lex_state = 195, .external_lex_state = 19}, - [302] = {.lex_state = 177, .external_lex_state = 10}, - [303] = {.lex_state = 202, .external_lex_state = 2}, + [301] = {.lex_state = 197, .external_lex_state = 19}, + [302] = {.lex_state = 179, .external_lex_state = 10}, + [303] = {.lex_state = 204, .external_lex_state = 2}, [304] = {.lex_state = 130}, [305] = {.lex_state = 130}, [306] = {.lex_state = 130}, - [307] = {.lex_state = 181, .external_lex_state = 11}, - [308] = {.lex_state = 181, .external_lex_state = 11}, - [309] = {.lex_state = 181, .external_lex_state = 7}, + [307] = {.lex_state = 183, .external_lex_state = 11}, + [308] = {.lex_state = 183, .external_lex_state = 11}, + [309] = {.lex_state = 183, .external_lex_state = 7}, [310] = {.lex_state = 130}, - [311] = {.lex_state = 184, .external_lex_state = 7}, - [312] = {.lex_state = 179, .external_lex_state = 9}, + [311] = {.lex_state = 186, .external_lex_state = 7}, + [312] = {.lex_state = 181, .external_lex_state = 9}, [313] = {.lex_state = 120, .external_lex_state = 2}, - [314] = {.lex_state = 188, .external_lex_state = 14}, - [315] = {.lex_state = 192, .external_lex_state = 16}, - [316] = {.lex_state = 238, .external_lex_state = 20}, + [314] = {.lex_state = 190, .external_lex_state = 14}, + [315] = {.lex_state = 194, .external_lex_state = 16}, + [316] = {.lex_state = 240, .external_lex_state = 20}, [317] = {.lex_state = 130}, - [318] = {.lex_state = 238, .external_lex_state = 20}, + [318] = {.lex_state = 240, .external_lex_state = 20}, [319] = {.lex_state = 130}, - [320] = {.lex_state = 198, .external_lex_state = 20}, - [321] = {.lex_state = 195, .external_lex_state = 19}, + [320] = {.lex_state = 200, .external_lex_state = 20}, + [321] = {.lex_state = 197, .external_lex_state = 19}, [322] = {.lex_state = 158}, - [323] = {.lex_state = 195, .external_lex_state = 19}, - [324] = {.lex_state = 195, .external_lex_state = 19}, - [325] = {.lex_state = 195, .external_lex_state = 19}, - [326] = {.lex_state = 163, .external_lex_state = 18}, + [323] = {.lex_state = 197, .external_lex_state = 19}, + [324] = {.lex_state = 197, .external_lex_state = 19}, + [325] = {.lex_state = 197, .external_lex_state = 19}, + [326] = {.lex_state = 165, .external_lex_state = 18}, [327] = {.lex_state = 130, .external_lex_state = 18}, [328] = {.lex_state = 130, .external_lex_state = 18}, [329] = {.lex_state = 130}, - [330] = {.lex_state = 202, .external_lex_state = 2}, + [330] = {.lex_state = 204, .external_lex_state = 2}, [331] = {.lex_state = 130}, - [332] = {.lex_state = 210, .external_lex_state = 2}, + [332] = {.lex_state = 212, .external_lex_state = 2}, [333] = {.lex_state = 130}, - [334] = {.lex_state = 202, .external_lex_state = 2}, + [334] = {.lex_state = 204, .external_lex_state = 2}, [335] = {.lex_state = 130}, - [336] = {.lex_state = 195, .external_lex_state = 19}, + [336] = {.lex_state = 197, .external_lex_state = 19}, [337] = {.lex_state = 120, .external_lex_state = 2}, - [338] = {.lex_state = 175, .external_lex_state = 3}, + [338] = {.lex_state = 177, .external_lex_state = 3}, [339] = {.lex_state = 120, .external_lex_state = 2}, [340] = {.lex_state = 120}, - [341] = {.lex_state = 195, .external_lex_state = 19}, + [341] = {.lex_state = 197, .external_lex_state = 19}, [342] = {.lex_state = 151, .external_lex_state = 4}, - [343] = {.lex_state = 212, .external_lex_state = 22}, - [344] = {.lex_state = 195, .external_lex_state = 19}, - [345] = {.lex_state = 240, .external_lex_state = 29}, - [346] = {.lex_state = 195, .external_lex_state = 21}, - [347] = {.lex_state = 195, .external_lex_state = 21}, - [348] = {.lex_state = 242, .external_lex_state = 29}, - [349] = {.lex_state = 195, .external_lex_state = 19}, - [350] = {.lex_state = 195, .external_lex_state = 21}, - [351] = {.lex_state = 204, .external_lex_state = 19}, - [352] = {.lex_state = 177, .external_lex_state = 10}, + [343] = {.lex_state = 214, .external_lex_state = 22}, + [344] = {.lex_state = 197, .external_lex_state = 19}, + [345] = {.lex_state = 242, .external_lex_state = 29}, + [346] = {.lex_state = 197, .external_lex_state = 21}, + [347] = {.lex_state = 197, .external_lex_state = 21}, + [348] = {.lex_state = 244, .external_lex_state = 29}, + [349] = {.lex_state = 197, .external_lex_state = 19}, + [350] = {.lex_state = 197, .external_lex_state = 21}, + [351] = {.lex_state = 206, .external_lex_state = 19}, + [352] = {.lex_state = 179, .external_lex_state = 10}, [353] = {.lex_state = 130}, [354] = {.lex_state = 130}, [355] = {.lex_state = 130}, - [356] = {.lex_state = 206, .external_lex_state = 20}, + [356] = {.lex_state = 208, .external_lex_state = 20}, [357] = {.lex_state = 130}, - [358] = {.lex_state = 204, .external_lex_state = 19}, + [358] = {.lex_state = 206, .external_lex_state = 19}, [359] = {.lex_state = 120, .external_lex_state = 2}, [360] = {.lex_state = 120, .external_lex_state = 2}, [361] = {.lex_state = 120}, - [362] = {.lex_state = 204, .external_lex_state = 19}, + [362] = {.lex_state = 206, .external_lex_state = 19}, [363] = {.lex_state = 151, .external_lex_state = 4}, - [364] = {.lex_state = 204, .external_lex_state = 19}, - [365] = {.lex_state = 204, .external_lex_state = 21}, - [366] = {.lex_state = 244, .external_lex_state = 29}, - [367] = {.lex_state = 204, .external_lex_state = 19}, - [368] = {.lex_state = 204, .external_lex_state = 21}, - [369] = {.lex_state = 175, .external_lex_state = 3}, + [364] = {.lex_state = 206, .external_lex_state = 19}, + [365] = {.lex_state = 206, .external_lex_state = 21}, + [366] = {.lex_state = 246, .external_lex_state = 29}, + [367] = {.lex_state = 206, .external_lex_state = 19}, + [368] = {.lex_state = 206, .external_lex_state = 21}, + [369] = {.lex_state = 177, .external_lex_state = 3}, [370] = {.lex_state = 130}, - [371] = {.lex_state = 184, .external_lex_state = 7}, - [372] = {.lex_state = 179, .external_lex_state = 9}, + [371] = {.lex_state = 186, .external_lex_state = 7}, + [372] = {.lex_state = 181, .external_lex_state = 9}, [373] = {.lex_state = 155, .external_lex_state = 7}, - [374] = {.lex_state = 171, .external_lex_state = 9}, + [374] = {.lex_state = 173, .external_lex_state = 9}, [375] = {.lex_state = 151, .external_lex_state = 4}, - [376] = {.lex_state = 218, .external_lex_state = 30}, + [376] = {.lex_state = 220, .external_lex_state = 30}, [377] = {.lex_state = 158}, - [378] = {.lex_state = 163}, - [379] = {.lex_state = 163}, + [378] = {.lex_state = 165}, + [379] = {.lex_state = 165}, [380] = {.lex_state = 120, .external_lex_state = 2}, [381] = {.lex_state = 120, .external_lex_state = 2}, [382] = {.lex_state = 120, .external_lex_state = 2}, - [383] = {.lex_state = 218, .external_lex_state = 30}, - [384] = {.lex_state = 214, .external_lex_state = 23}, - [385] = {.lex_state = 214, .external_lex_state = 23}, - [386] = {.lex_state = 246, .external_lex_state = 31}, - [387] = {.lex_state = 214, .external_lex_state = 23}, + [383] = {.lex_state = 220, .external_lex_state = 30}, + [384] = {.lex_state = 216, .external_lex_state = 23}, + [385] = {.lex_state = 216, .external_lex_state = 23}, + [386] = {.lex_state = 248, .external_lex_state = 31}, + [387] = {.lex_state = 216, .external_lex_state = 23}, [388] = {.lex_state = 128, .external_lex_state = 8}, - [389] = {.lex_state = 218, .external_lex_state = 23}, - [390] = {.lex_state = 218, .external_lex_state = 23}, - [391] = {.lex_state = 177, .external_lex_state = 10}, + [389] = {.lex_state = 220, .external_lex_state = 23}, + [390] = {.lex_state = 220, .external_lex_state = 23}, + [391] = {.lex_state = 179, .external_lex_state = 10}, [392] = {.lex_state = 128, .external_lex_state = 8}, [393] = {.lex_state = 151, .external_lex_state = 4}, [394] = {.lex_state = 130}, - [395] = {.lex_state = 220, .external_lex_state = 24}, - [396] = {.lex_state = 249, .external_lex_state = 32}, + [395] = {.lex_state = 222, .external_lex_state = 24}, + [396] = {.lex_state = 251, .external_lex_state = 32}, [397] = {.lex_state = 158}, - [398] = {.lex_state = 249, .external_lex_state = 32}, - [399] = {.lex_state = 249, .external_lex_state = 32}, - [400] = {.lex_state = 249, .external_lex_state = 32}, - [401] = {.lex_state = 163, .external_lex_state = 18}, + [398] = {.lex_state = 251, .external_lex_state = 32}, + [399] = {.lex_state = 251, .external_lex_state = 32}, + [400] = {.lex_state = 251, .external_lex_state = 32}, + [401] = {.lex_state = 165, .external_lex_state = 18}, [402] = {.lex_state = 130, .external_lex_state = 18}, [403] = {.lex_state = 130, .external_lex_state = 18}, [404] = {.lex_state = 130}, - [405] = {.lex_state = 202, .external_lex_state = 2}, + [405] = {.lex_state = 204, .external_lex_state = 2}, [406] = {.lex_state = 130}, - [407] = {.lex_state = 210, .external_lex_state = 2}, + [407] = {.lex_state = 212, .external_lex_state = 2}, [408] = {.lex_state = 130}, - [409] = {.lex_state = 202, .external_lex_state = 2}, + [409] = {.lex_state = 204, .external_lex_state = 2}, [410] = {.lex_state = 130}, - [411] = {.lex_state = 220, .external_lex_state = 24}, + [411] = {.lex_state = 222, .external_lex_state = 24}, [412] = {.lex_state = 151, .external_lex_state = 4}, - [413] = {.lex_state = 171, .external_lex_state = 26}, - [414] = {.lex_state = 222, .external_lex_state = 33}, - [415] = {.lex_state = 179, .external_lex_state = 9}, - [416] = {.lex_state = 222, .external_lex_state = 33}, - [417] = {.lex_state = 222, .external_lex_state = 4}, - [418] = {.lex_state = 179, .external_lex_state = 26}, + [413] = {.lex_state = 173, .external_lex_state = 26}, + [414] = {.lex_state = 224, .external_lex_state = 33}, + [415] = {.lex_state = 181, .external_lex_state = 9}, + [416] = {.lex_state = 224, .external_lex_state = 33}, + [417] = {.lex_state = 224, .external_lex_state = 4}, + [418] = {.lex_state = 181, .external_lex_state = 26}, [419] = {.lex_state = 158}, - [420] = {.lex_state = 179, .external_lex_state = 26}, - [421] = {.lex_state = 179, .external_lex_state = 26}, - [422] = {.lex_state = 179, .external_lex_state = 26}, - [423] = {.lex_state = 163, .external_lex_state = 18}, + [420] = {.lex_state = 181, .external_lex_state = 26}, + [421] = {.lex_state = 181, .external_lex_state = 26}, + [422] = {.lex_state = 181, .external_lex_state = 26}, + [423] = {.lex_state = 165, .external_lex_state = 18}, [424] = {.lex_state = 130, .external_lex_state = 18}, [425] = {.lex_state = 130, .external_lex_state = 18}, [426] = {.lex_state = 130}, - [427] = {.lex_state = 202, .external_lex_state = 2}, + [427] = {.lex_state = 204, .external_lex_state = 2}, [428] = {.lex_state = 130}, - [429] = {.lex_state = 210, .external_lex_state = 2}, + [429] = {.lex_state = 212, .external_lex_state = 2}, [430] = {.lex_state = 130}, - [431] = {.lex_state = 202, .external_lex_state = 2}, - [432] = {.lex_state = 171, .external_lex_state = 26}, - [433] = {.lex_state = 252, .external_lex_state = 34}, + [431] = {.lex_state = 204, .external_lex_state = 2}, + [432] = {.lex_state = 173, .external_lex_state = 26}, + [433] = {.lex_state = 254, .external_lex_state = 34}, [434] = {.lex_state = 158}, - [435] = {.lex_state = 163}, - [436] = {.lex_state = 163}, + [435] = {.lex_state = 165}, + [436] = {.lex_state = 165}, [437] = {.lex_state = 120, .external_lex_state = 2}, [438] = {.lex_state = 120, .external_lex_state = 2}, [439] = {.lex_state = 120, .external_lex_state = 2}, - [440] = {.lex_state = 252, .external_lex_state = 34}, - [441] = {.lex_state = 252, .external_lex_state = 35}, - [442] = {.lex_state = 252, .external_lex_state = 35}, - [443] = {.lex_state = 184, .external_lex_state = 7}, - [444] = {.lex_state = 224, .external_lex_state = 2}, + [440] = {.lex_state = 254, .external_lex_state = 34}, + [441] = {.lex_state = 254, .external_lex_state = 35}, + [442] = {.lex_state = 254, .external_lex_state = 35}, + [443] = {.lex_state = 186, .external_lex_state = 7}, + [444] = {.lex_state = 226, .external_lex_state = 2}, [445] = {.lex_state = 155, .external_lex_state = 7}, - [446] = {.lex_state = 171, .external_lex_state = 9}, - [447] = {.lex_state = 224, .external_lex_state = 2}, - [448] = {.lex_state = 184, .external_lex_state = 7}, + [446] = {.lex_state = 173, .external_lex_state = 9}, + [447] = {.lex_state = 226, .external_lex_state = 2}, + [448] = {.lex_state = 186, .external_lex_state = 7}, [449] = {.lex_state = 120, .external_lex_state = 2}, - [450] = {.lex_state = 254, .external_lex_state = 2}, - [451] = {.lex_state = 226, .external_lex_state = 2}, + [450] = {.lex_state = 256, .external_lex_state = 2}, + [451] = {.lex_state = 228, .external_lex_state = 2}, [452] = {.lex_state = 155, .external_lex_state = 7}, [453] = {.lex_state = 130}, [454] = {.lex_state = 130}, - [455] = {.lex_state = 171, .external_lex_state = 9}, - [456] = {.lex_state = 226, .external_lex_state = 2}, + [455] = {.lex_state = 173, .external_lex_state = 9}, + [456] = {.lex_state = 228, .external_lex_state = 2}, [457] = {.lex_state = 130}, - [458] = {.lex_state = 181, .external_lex_state = 11}, - [459] = {.lex_state = 181, .external_lex_state = 11}, - [460] = {.lex_state = 256, .external_lex_state = 4}, - [461] = {.lex_state = 181, .external_lex_state = 7}, - [462] = {.lex_state = 181, .external_lex_state = 11}, - [463] = {.lex_state = 181, .external_lex_state = 11}, + [458] = {.lex_state = 183, .external_lex_state = 11}, + [459] = {.lex_state = 183, .external_lex_state = 11}, + [460] = {.lex_state = 258, .external_lex_state = 4}, + [461] = {.lex_state = 183, .external_lex_state = 7}, + [462] = {.lex_state = 183, .external_lex_state = 11}, + [463] = {.lex_state = 183, .external_lex_state = 11}, [464] = {.lex_state = 130, .external_lex_state = 18}, [465] = {.lex_state = 130, .external_lex_state = 18}, - [466] = {.lex_state = 181, .external_lex_state = 11}, + [466] = {.lex_state = 183, .external_lex_state = 11}, [467] = {.lex_state = 130}, - [468] = {.lex_state = 236, .external_lex_state = 28}, - [469] = {.lex_state = 181, .external_lex_state = 11}, + [468] = {.lex_state = 238, .external_lex_state = 28}, + [469] = {.lex_state = 183, .external_lex_state = 11}, [470] = {.lex_state = 130}, - [471] = {.lex_state = 236, .external_lex_state = 28}, - [472] = {.lex_state = 181, .external_lex_state = 11}, - [473] = {.lex_state = 181, .external_lex_state = 11}, - [474] = {.lex_state = 256, .external_lex_state = 4}, - [475] = {.lex_state = 181, .external_lex_state = 7}, + [471] = {.lex_state = 238, .external_lex_state = 28}, + [472] = {.lex_state = 183, .external_lex_state = 11}, + [473] = {.lex_state = 183, .external_lex_state = 11}, + [474] = {.lex_state = 258, .external_lex_state = 4}, + [475] = {.lex_state = 183, .external_lex_state = 7}, [476] = {.lex_state = 130}, - [477] = {.lex_state = 259, .external_lex_state = 23}, - [478] = {.lex_state = 229, .external_lex_state = 6}, + [477] = {.lex_state = 261, .external_lex_state = 23}, + [478] = {.lex_state = 231, .external_lex_state = 6}, [479] = {.lex_state = 120}, [480] = {.lex_state = 151, .external_lex_state = 4}, - [481] = {.lex_state = 184, .external_lex_state = 7}, - [482] = {.lex_state = 175, .external_lex_state = 3}, - [483] = {.lex_state = 179, .external_lex_state = 26}, - [484] = {.lex_state = 179, .external_lex_state = 26}, + [481] = {.lex_state = 186, .external_lex_state = 7}, + [482] = {.lex_state = 177, .external_lex_state = 3}, + [483] = {.lex_state = 181, .external_lex_state = 26}, + [484] = {.lex_state = 181, .external_lex_state = 26}, [485] = {.lex_state = 130}, - [486] = {.lex_state = 259, .external_lex_state = 23}, - [487] = {.lex_state = 177, .external_lex_state = 10}, - [488] = {.lex_state = 184, .external_lex_state = 5}, + [486] = {.lex_state = 261, .external_lex_state = 23}, + [487] = {.lex_state = 179, .external_lex_state = 10}, + [488] = {.lex_state = 186, .external_lex_state = 5}, [489] = {.lex_state = 130}, - [490] = {.lex_state = 184, .external_lex_state = 7}, - [491] = {.lex_state = 184, .external_lex_state = 7}, - [492] = {.lex_state = 179, .external_lex_state = 9}, + [490] = {.lex_state = 186, .external_lex_state = 7}, + [491] = {.lex_state = 186, .external_lex_state = 7}, + [492] = {.lex_state = 181, .external_lex_state = 9}, [493] = {.lex_state = 151, .external_lex_state = 4}, - [494] = {.lex_state = 214, .external_lex_state = 30}, - [495] = {.lex_state = 214, .external_lex_state = 30}, - [496] = {.lex_state = 175, .external_lex_state = 8}, - [497] = {.lex_state = 214, .external_lex_state = 23}, - [498] = {.lex_state = 214, .external_lex_state = 23}, - [499] = {.lex_state = 234, .external_lex_state = 2}, - [500] = {.lex_state = 175, .external_lex_state = 8}, - [501] = {.lex_state = 190, .external_lex_state = 27}, - [502] = {.lex_state = 190, .external_lex_state = 27}, - [503] = {.lex_state = 188, .external_lex_state = 12}, - [504] = {.lex_state = 190, .external_lex_state = 27}, + [494] = {.lex_state = 216, .external_lex_state = 30}, + [495] = {.lex_state = 216, .external_lex_state = 30}, + [496] = {.lex_state = 177, .external_lex_state = 8}, + [497] = {.lex_state = 216, .external_lex_state = 23}, + [498] = {.lex_state = 216, .external_lex_state = 23}, + [499] = {.lex_state = 236, .external_lex_state = 2}, + [500] = {.lex_state = 177, .external_lex_state = 8}, + [501] = {.lex_state = 192, .external_lex_state = 27}, + [502] = {.lex_state = 192, .external_lex_state = 27}, + [503] = {.lex_state = 190, .external_lex_state = 12}, + [504] = {.lex_state = 192, .external_lex_state = 27}, [505] = {.lex_state = 130, .external_lex_state = 18}, [506] = {.lex_state = 130, .external_lex_state = 18}, - [507] = {.lex_state = 190, .external_lex_state = 27}, + [507] = {.lex_state = 192, .external_lex_state = 27}, [508] = {.lex_state = 130}, - [509] = {.lex_state = 236, .external_lex_state = 28}, - [510] = {.lex_state = 190, .external_lex_state = 27}, + [509] = {.lex_state = 238, .external_lex_state = 28}, + [510] = {.lex_state = 192, .external_lex_state = 27}, [511] = {.lex_state = 130}, - [512] = {.lex_state = 236, .external_lex_state = 28}, - [513] = {.lex_state = 190, .external_lex_state = 27}, - [514] = {.lex_state = 190, .external_lex_state = 27}, - [515] = {.lex_state = 192, .external_lex_state = 15}, + [512] = {.lex_state = 238, .external_lex_state = 28}, + [513] = {.lex_state = 192, .external_lex_state = 27}, + [514] = {.lex_state = 192, .external_lex_state = 27}, + [515] = {.lex_state = 194, .external_lex_state = 15}, [516] = {.lex_state = 155, .external_lex_state = 36}, - [517] = {.lex_state = 184, .external_lex_state = 5}, - [518] = {.lex_state = 222, .external_lex_state = 4}, + [517] = {.lex_state = 186, .external_lex_state = 5}, + [518] = {.lex_state = 224, .external_lex_state = 4}, [519] = {.lex_state = 158}, - [520] = {.lex_state = 163}, - [521] = {.lex_state = 163}, + [520] = {.lex_state = 165}, + [521] = {.lex_state = 165}, [522] = {.lex_state = 120, .external_lex_state = 2}, [523] = {.lex_state = 120, .external_lex_state = 2}, [524] = {.lex_state = 120, .external_lex_state = 2}, [525] = {.lex_state = 155, .external_lex_state = 36}, - [526] = {.lex_state = 202, .external_lex_state = 17}, - [527] = {.lex_state = 202, .external_lex_state = 17}, - [528] = {.lex_state = 173, .external_lex_state = 17}, - [529] = {.lex_state = 202, .external_lex_state = 17}, + [526] = {.lex_state = 204, .external_lex_state = 17}, + [527] = {.lex_state = 204, .external_lex_state = 17}, + [528] = {.lex_state = 175, .external_lex_state = 17}, + [529] = {.lex_state = 204, .external_lex_state = 17}, [530] = {.lex_state = 130, .external_lex_state = 18}, [531] = {.lex_state = 130, .external_lex_state = 18}, - [532] = {.lex_state = 202, .external_lex_state = 17}, + [532] = {.lex_state = 204, .external_lex_state = 17}, [533] = {.lex_state = 130}, - [534] = {.lex_state = 236, .external_lex_state = 28}, - [535] = {.lex_state = 202, .external_lex_state = 17}, + [534] = {.lex_state = 238, .external_lex_state = 28}, + [535] = {.lex_state = 204, .external_lex_state = 17}, [536] = {.lex_state = 130}, - [537] = {.lex_state = 236, .external_lex_state = 28}, - [538] = {.lex_state = 202, .external_lex_state = 17}, - [539] = {.lex_state = 202, .external_lex_state = 17}, + [537] = {.lex_state = 238, .external_lex_state = 28}, + [538] = {.lex_state = 204, .external_lex_state = 17}, + [539] = {.lex_state = 204, .external_lex_state = 17}, [540] = {.lex_state = 130, .external_lex_state = 18}, [541] = {.lex_state = 130, .external_lex_state = 18}, [542] = {.lex_state = 158}, [543] = {.lex_state = 130}, - [544] = {.lex_state = 236, .external_lex_state = 28}, + [544] = {.lex_state = 238, .external_lex_state = 28}, [545] = {.lex_state = 158}, [546] = {.lex_state = 130}, - [547] = {.lex_state = 236, .external_lex_state = 28}, + [547] = {.lex_state = 238, .external_lex_state = 28}, [548] = {.lex_state = 158}, - [549] = {.lex_state = 175, .external_lex_state = 3}, + [549] = {.lex_state = 177, .external_lex_state = 3}, [550] = {.lex_state = 130}, - [551] = {.lex_state = 175, .external_lex_state = 3}, + [551] = {.lex_state = 177, .external_lex_state = 3}, [552] = {.lex_state = 130}, [553] = {.lex_state = 130, .external_lex_state = 25}, - [554] = {.lex_state = 261, .external_lex_state = 37}, - [555] = {.lex_state = 175, .external_lex_state = 3}, - [556] = {.lex_state = 261, .external_lex_state = 37}, - [557] = {.lex_state = 261, .external_lex_state = 37}, + [554] = {.lex_state = 263, .external_lex_state = 37}, + [555] = {.lex_state = 177, .external_lex_state = 3}, + [556] = {.lex_state = 263, .external_lex_state = 37}, + [557] = {.lex_state = 263, .external_lex_state = 37}, [558] = {.lex_state = 130, .external_lex_state = 25}, - [559] = {.lex_state = 261, .external_lex_state = 37}, - [560] = {.lex_state = 261, .external_lex_state = 37}, - [561] = {.lex_state = 261, .external_lex_state = 37}, - [562] = {.lex_state = 195, .external_lex_state = 19}, - [563] = {.lex_state = 195, .external_lex_state = 19}, - [564] = {.lex_state = 195, .external_lex_state = 19}, - [565] = {.lex_state = 202, .external_lex_state = 17}, - [566] = {.lex_state = 202, .external_lex_state = 2}, - [567] = {.lex_state = 222, .external_lex_state = 4}, - [568] = {.lex_state = 202, .external_lex_state = 17}, + [559] = {.lex_state = 263, .external_lex_state = 37}, + [560] = {.lex_state = 263, .external_lex_state = 37}, + [561] = {.lex_state = 263, .external_lex_state = 37}, + [562] = {.lex_state = 197, .external_lex_state = 19}, + [563] = {.lex_state = 197, .external_lex_state = 19}, + [564] = {.lex_state = 197, .external_lex_state = 19}, + [565] = {.lex_state = 204, .external_lex_state = 17}, + [566] = {.lex_state = 204, .external_lex_state = 2}, + [567] = {.lex_state = 224, .external_lex_state = 4}, + [568] = {.lex_state = 204, .external_lex_state = 17}, [569] = {.lex_state = 151, .external_lex_state = 4}, - [570] = {.lex_state = 224, .external_lex_state = 2}, + [570] = {.lex_state = 226, .external_lex_state = 2}, [571] = {.lex_state = 130}, - [572] = {.lex_state = 226, .external_lex_state = 2}, - [573] = {.lex_state = 181, .external_lex_state = 7}, + [572] = {.lex_state = 228, .external_lex_state = 2}, + [573] = {.lex_state = 183, .external_lex_state = 7}, [574] = {.lex_state = 130}, - [575] = {.lex_state = 181, .external_lex_state = 7}, + [575] = {.lex_state = 183, .external_lex_state = 7}, [576] = {.lex_state = 130}, [577] = {.lex_state = 130}, - [578] = {.lex_state = 229, .external_lex_state = 6}, - [579] = {.lex_state = 263, .external_lex_state = 29}, + [578] = {.lex_state = 231, .external_lex_state = 6}, + [579] = {.lex_state = 265, .external_lex_state = 29}, [580] = {.lex_state = 130}, - [581] = {.lex_state = 234, .external_lex_state = 2}, - [582] = {.lex_state = 184, .external_lex_state = 7}, - [583] = {.lex_state = 179, .external_lex_state = 9}, + [581] = {.lex_state = 236, .external_lex_state = 2}, + [582] = {.lex_state = 186, .external_lex_state = 7}, + [583] = {.lex_state = 181, .external_lex_state = 9}, [584] = {.lex_state = 130}, - [585] = {.lex_state = 177, .external_lex_state = 10}, - [586] = {.lex_state = 238, .external_lex_state = 20}, - [587] = {.lex_state = 198, .external_lex_state = 20}, - [588] = {.lex_state = 195, .external_lex_state = 19}, + [585] = {.lex_state = 179, .external_lex_state = 10}, + [586] = {.lex_state = 240, .external_lex_state = 20}, + [587] = {.lex_state = 200, .external_lex_state = 20}, + [588] = {.lex_state = 197, .external_lex_state = 19}, [589] = {.lex_state = 130, .external_lex_state = 18}, [590] = {.lex_state = 130, .external_lex_state = 18}, - [591] = {.lex_state = 195, .external_lex_state = 19}, + [591] = {.lex_state = 197, .external_lex_state = 19}, [592] = {.lex_state = 130}, - [593] = {.lex_state = 236, .external_lex_state = 28}, - [594] = {.lex_state = 195, .external_lex_state = 19}, + [593] = {.lex_state = 238, .external_lex_state = 28}, + [594] = {.lex_state = 197, .external_lex_state = 19}, [595] = {.lex_state = 130}, - [596] = {.lex_state = 236, .external_lex_state = 28}, - [597] = {.lex_state = 195, .external_lex_state = 19}, - [598] = {.lex_state = 195, .external_lex_state = 19}, + [596] = {.lex_state = 238, .external_lex_state = 28}, + [597] = {.lex_state = 197, .external_lex_state = 19}, + [598] = {.lex_state = 197, .external_lex_state = 19}, [599] = {.lex_state = 130}, [600] = {.lex_state = 130}, - [601] = {.lex_state = 202, .external_lex_state = 2}, + [601] = {.lex_state = 204, .external_lex_state = 2}, [602] = {.lex_state = 130}, - [603] = {.lex_state = 202, .external_lex_state = 2}, + [603] = {.lex_state = 204, .external_lex_state = 2}, [604] = {.lex_state = 151, .external_lex_state = 4}, - [605] = {.lex_state = 242, .external_lex_state = 38}, + [605] = {.lex_state = 244, .external_lex_state = 38}, [606] = {.lex_state = 158}, - [607] = {.lex_state = 163}, - [608] = {.lex_state = 163}, + [607] = {.lex_state = 165}, + [608] = {.lex_state = 165}, [609] = {.lex_state = 120, .external_lex_state = 2}, [610] = {.lex_state = 120, .external_lex_state = 2}, [611] = {.lex_state = 120, .external_lex_state = 2}, - [612] = {.lex_state = 242, .external_lex_state = 38}, - [613] = {.lex_state = 240, .external_lex_state = 29}, - [614] = {.lex_state = 240, .external_lex_state = 29}, - [615] = {.lex_state = 246, .external_lex_state = 31}, - [616] = {.lex_state = 240, .external_lex_state = 29}, - [617] = {.lex_state = 195, .external_lex_state = 21}, - [618] = {.lex_state = 242, .external_lex_state = 29}, - [619] = {.lex_state = 242, .external_lex_state = 29}, - [620] = {.lex_state = 195, .external_lex_state = 21}, - [621] = {.lex_state = 204, .external_lex_state = 19}, - [622] = {.lex_state = 210, .external_lex_state = 17}, - [623] = {.lex_state = 210, .external_lex_state = 17}, + [612] = {.lex_state = 244, .external_lex_state = 38}, + [613] = {.lex_state = 242, .external_lex_state = 29}, + [614] = {.lex_state = 242, .external_lex_state = 29}, + [615] = {.lex_state = 248, .external_lex_state = 31}, + [616] = {.lex_state = 242, .external_lex_state = 29}, + [617] = {.lex_state = 197, .external_lex_state = 21}, + [618] = {.lex_state = 244, .external_lex_state = 29}, + [619] = {.lex_state = 244, .external_lex_state = 29}, + [620] = {.lex_state = 197, .external_lex_state = 21}, + [621] = {.lex_state = 206, .external_lex_state = 19}, + [622] = {.lex_state = 212, .external_lex_state = 17}, + [623] = {.lex_state = 212, .external_lex_state = 17}, [624] = {.lex_state = 130}, - [625] = {.lex_state = 265, .external_lex_state = 29}, - [626] = {.lex_state = 177, .external_lex_state = 10}, - [627] = {.lex_state = 206, .external_lex_state = 20}, + [625] = {.lex_state = 267, .external_lex_state = 29}, + [626] = {.lex_state = 179, .external_lex_state = 10}, + [627] = {.lex_state = 208, .external_lex_state = 20}, [628] = {.lex_state = 130}, - [629] = {.lex_state = 210, .external_lex_state = 2}, + [629] = {.lex_state = 212, .external_lex_state = 2}, [630] = {.lex_state = 130}, - [631] = {.lex_state = 210, .external_lex_state = 2}, + [631] = {.lex_state = 212, .external_lex_state = 2}, [632] = {.lex_state = 151, .external_lex_state = 4}, - [633] = {.lex_state = 244, .external_lex_state = 38}, - [634] = {.lex_state = 244, .external_lex_state = 38}, - [635] = {.lex_state = 204, .external_lex_state = 21}, - [636] = {.lex_state = 244, .external_lex_state = 29}, - [637] = {.lex_state = 244, .external_lex_state = 29}, - [638] = {.lex_state = 204, .external_lex_state = 21}, - [639] = {.lex_state = 231, .external_lex_state = 23}, - [640] = {.lex_state = 218, .external_lex_state = 30}, - [641] = {.lex_state = 218, .external_lex_state = 30}, - [642] = {.lex_state = 214, .external_lex_state = 23}, + [633] = {.lex_state = 246, .external_lex_state = 38}, + [634] = {.lex_state = 246, .external_lex_state = 38}, + [635] = {.lex_state = 206, .external_lex_state = 21}, + [636] = {.lex_state = 246, .external_lex_state = 29}, + [637] = {.lex_state = 246, .external_lex_state = 29}, + [638] = {.lex_state = 206, .external_lex_state = 21}, + [639] = {.lex_state = 233, .external_lex_state = 23}, + [640] = {.lex_state = 220, .external_lex_state = 30}, + [641] = {.lex_state = 220, .external_lex_state = 30}, + [642] = {.lex_state = 216, .external_lex_state = 23}, [643] = {.lex_state = 151, .external_lex_state = 4}, - [644] = {.lex_state = 218, .external_lex_state = 30}, - [645] = {.lex_state = 214, .external_lex_state = 30}, + [644] = {.lex_state = 220, .external_lex_state = 30}, + [645] = {.lex_state = 216, .external_lex_state = 30}, [646] = {.lex_state = 158}, - [647] = {.lex_state = 214, .external_lex_state = 30}, - [648] = {.lex_state = 214, .external_lex_state = 30}, - [649] = {.lex_state = 214, .external_lex_state = 30}, - [650] = {.lex_state = 163, .external_lex_state = 18}, + [647] = {.lex_state = 216, .external_lex_state = 30}, + [648] = {.lex_state = 216, .external_lex_state = 30}, + [649] = {.lex_state = 216, .external_lex_state = 30}, + [650] = {.lex_state = 165, .external_lex_state = 18}, [651] = {.lex_state = 130, .external_lex_state = 18}, [652] = {.lex_state = 130, .external_lex_state = 18}, [653] = {.lex_state = 130}, - [654] = {.lex_state = 202, .external_lex_state = 2}, + [654] = {.lex_state = 204, .external_lex_state = 2}, [655] = {.lex_state = 130}, - [656] = {.lex_state = 210, .external_lex_state = 2}, + [656] = {.lex_state = 212, .external_lex_state = 2}, [657] = {.lex_state = 130}, - [658] = {.lex_state = 202, .external_lex_state = 2}, - [659] = {.lex_state = 218, .external_lex_state = 30}, - [660] = {.lex_state = 246, .external_lex_state = 31}, - [661] = {.lex_state = 214, .external_lex_state = 23}, - [662] = {.lex_state = 163}, - [663] = {.lex_state = 163}, - [664] = {.lex_state = 246, .external_lex_state = 31}, - [665] = {.lex_state = 173, .external_lex_state = 17}, - [666] = {.lex_state = 173, .external_lex_state = 17}, - [667] = {.lex_state = 218, .external_lex_state = 23}, - [668] = {.lex_state = 249, .external_lex_state = 32}, - [669] = {.lex_state = 249, .external_lex_state = 32}, - [670] = {.lex_state = 220, .external_lex_state = 24}, - [671] = {.lex_state = 249, .external_lex_state = 32}, + [658] = {.lex_state = 204, .external_lex_state = 2}, + [659] = {.lex_state = 220, .external_lex_state = 30}, + [660] = {.lex_state = 248, .external_lex_state = 31}, + [661] = {.lex_state = 216, .external_lex_state = 23}, + [662] = {.lex_state = 165}, + [663] = {.lex_state = 165}, + [664] = {.lex_state = 248, .external_lex_state = 31}, + [665] = {.lex_state = 175, .external_lex_state = 17}, + [666] = {.lex_state = 175, .external_lex_state = 17}, + [667] = {.lex_state = 220, .external_lex_state = 23}, + [668] = {.lex_state = 251, .external_lex_state = 32}, + [669] = {.lex_state = 251, .external_lex_state = 32}, + [670] = {.lex_state = 222, .external_lex_state = 24}, + [671] = {.lex_state = 251, .external_lex_state = 32}, [672] = {.lex_state = 130, .external_lex_state = 18}, [673] = {.lex_state = 130, .external_lex_state = 18}, - [674] = {.lex_state = 249, .external_lex_state = 32}, + [674] = {.lex_state = 251, .external_lex_state = 32}, [675] = {.lex_state = 130}, - [676] = {.lex_state = 236, .external_lex_state = 28}, - [677] = {.lex_state = 249, .external_lex_state = 32}, + [676] = {.lex_state = 238, .external_lex_state = 28}, + [677] = {.lex_state = 251, .external_lex_state = 32}, [678] = {.lex_state = 130}, - [679] = {.lex_state = 236, .external_lex_state = 28}, - [680] = {.lex_state = 249, .external_lex_state = 32}, - [681] = {.lex_state = 249, .external_lex_state = 32}, - [682] = {.lex_state = 179, .external_lex_state = 26}, - [683] = {.lex_state = 179, .external_lex_state = 26}, - [684] = {.lex_state = 171, .external_lex_state = 26}, - [685] = {.lex_state = 222, .external_lex_state = 33}, - [686] = {.lex_state = 222, .external_lex_state = 33}, - [687] = {.lex_state = 179, .external_lex_state = 9}, - [688] = {.lex_state = 222, .external_lex_state = 4}, - [689] = {.lex_state = 179, .external_lex_state = 26}, + [679] = {.lex_state = 238, .external_lex_state = 28}, + [680] = {.lex_state = 251, .external_lex_state = 32}, + [681] = {.lex_state = 251, .external_lex_state = 32}, + [682] = {.lex_state = 181, .external_lex_state = 26}, + [683] = {.lex_state = 181, .external_lex_state = 26}, + [684] = {.lex_state = 173, .external_lex_state = 26}, + [685] = {.lex_state = 224, .external_lex_state = 33}, + [686] = {.lex_state = 224, .external_lex_state = 33}, + [687] = {.lex_state = 181, .external_lex_state = 9}, + [688] = {.lex_state = 224, .external_lex_state = 4}, + [689] = {.lex_state = 181, .external_lex_state = 26}, [690] = {.lex_state = 130, .external_lex_state = 18}, [691] = {.lex_state = 130, .external_lex_state = 18}, - [692] = {.lex_state = 179, .external_lex_state = 26}, + [692] = {.lex_state = 181, .external_lex_state = 26}, [693] = {.lex_state = 130}, - [694] = {.lex_state = 236, .external_lex_state = 28}, - [695] = {.lex_state = 179, .external_lex_state = 26}, + [694] = {.lex_state = 238, .external_lex_state = 28}, + [695] = {.lex_state = 181, .external_lex_state = 26}, [696] = {.lex_state = 130}, - [697] = {.lex_state = 236, .external_lex_state = 28}, - [698] = {.lex_state = 179, .external_lex_state = 26}, - [699] = {.lex_state = 179, .external_lex_state = 26}, + [697] = {.lex_state = 238, .external_lex_state = 28}, + [698] = {.lex_state = 181, .external_lex_state = 26}, + [699] = {.lex_state = 181, .external_lex_state = 26}, [700] = {.lex_state = 151, .external_lex_state = 4}, - [701] = {.lex_state = 252, .external_lex_state = 34}, - [702] = {.lex_state = 252, .external_lex_state = 34}, + [701] = {.lex_state = 254, .external_lex_state = 34}, + [702] = {.lex_state = 254, .external_lex_state = 34}, [703] = {.lex_state = 158}, - [704] = {.lex_state = 252, .external_lex_state = 34}, - [705] = {.lex_state = 252, .external_lex_state = 34}, - [706] = {.lex_state = 252, .external_lex_state = 34}, - [707] = {.lex_state = 163, .external_lex_state = 18}, + [704] = {.lex_state = 254, .external_lex_state = 34}, + [705] = {.lex_state = 254, .external_lex_state = 34}, + [706] = {.lex_state = 254, .external_lex_state = 34}, + [707] = {.lex_state = 165, .external_lex_state = 18}, [708] = {.lex_state = 130, .external_lex_state = 18}, [709] = {.lex_state = 130, .external_lex_state = 18}, [710] = {.lex_state = 130}, - [711] = {.lex_state = 202, .external_lex_state = 2}, + [711] = {.lex_state = 204, .external_lex_state = 2}, [712] = {.lex_state = 130}, - [713] = {.lex_state = 210, .external_lex_state = 2}, + [713] = {.lex_state = 212, .external_lex_state = 2}, [714] = {.lex_state = 130}, - [715] = {.lex_state = 202, .external_lex_state = 2}, - [716] = {.lex_state = 252, .external_lex_state = 34}, + [715] = {.lex_state = 204, .external_lex_state = 2}, + [716] = {.lex_state = 254, .external_lex_state = 34}, [717] = {.lex_state = 130}, - [718] = {.lex_state = 252, .external_lex_state = 35}, - [719] = {.lex_state = 224, .external_lex_state = 2}, - [720] = {.lex_state = 184, .external_lex_state = 7}, - [721] = {.lex_state = 224, .external_lex_state = 2}, + [718] = {.lex_state = 254, .external_lex_state = 35}, + [719] = {.lex_state = 226, .external_lex_state = 2}, + [720] = {.lex_state = 186, .external_lex_state = 7}, + [721] = {.lex_state = 226, .external_lex_state = 2}, [722] = {.lex_state = 130}, - [723] = {.lex_state = 254, .external_lex_state = 2}, + [723] = {.lex_state = 256, .external_lex_state = 2}, [724] = {.lex_state = 155, .external_lex_state = 7}, - [725] = {.lex_state = 171, .external_lex_state = 9}, - [726] = {.lex_state = 254, .external_lex_state = 2}, - [727] = {.lex_state = 226, .external_lex_state = 2}, - [728] = {.lex_state = 184, .external_lex_state = 7}, + [725] = {.lex_state = 173, .external_lex_state = 9}, + [726] = {.lex_state = 256, .external_lex_state = 2}, + [727] = {.lex_state = 228, .external_lex_state = 2}, + [728] = {.lex_state = 186, .external_lex_state = 7}, [729] = {.lex_state = 130}, - [730] = {.lex_state = 226, .external_lex_state = 2}, + [730] = {.lex_state = 228, .external_lex_state = 2}, [731] = {.lex_state = 130}, [732] = {.lex_state = 130}, - [733] = {.lex_state = 267, .external_lex_state = 39}, - [734] = {.lex_state = 184, .external_lex_state = 7}, - [735] = {.lex_state = 267, .external_lex_state = 39}, - [736] = {.lex_state = 256, .external_lex_state = 4}, - [737] = {.lex_state = 249}, - [738] = {.lex_state = 256, .external_lex_state = 4}, - [739] = {.lex_state = 256, .external_lex_state = 4}, - [740] = {.lex_state = 181, .external_lex_state = 11}, + [733] = {.lex_state = 269, .external_lex_state = 39}, + [734] = {.lex_state = 186, .external_lex_state = 7}, + [735] = {.lex_state = 269, .external_lex_state = 39}, + [736] = {.lex_state = 258, .external_lex_state = 4}, + [737] = {.lex_state = 251}, + [738] = {.lex_state = 258, .external_lex_state = 4}, + [739] = {.lex_state = 258, .external_lex_state = 4}, + [740] = {.lex_state = 183, .external_lex_state = 11}, [741] = {.lex_state = 130}, - [742] = {.lex_state = 181, .external_lex_state = 11}, + [742] = {.lex_state = 183, .external_lex_state = 11}, [743] = {.lex_state = 130}, [744] = {.lex_state = 130, .external_lex_state = 25}, - [745] = {.lex_state = 261, .external_lex_state = 37}, - [746] = {.lex_state = 181, .external_lex_state = 11}, - [747] = {.lex_state = 261, .external_lex_state = 37}, - [748] = {.lex_state = 261, .external_lex_state = 37}, + [745] = {.lex_state = 263, .external_lex_state = 37}, + [746] = {.lex_state = 183, .external_lex_state = 11}, + [747] = {.lex_state = 263, .external_lex_state = 37}, + [748] = {.lex_state = 263, .external_lex_state = 37}, [749] = {.lex_state = 130, .external_lex_state = 25}, - [750] = {.lex_state = 261, .external_lex_state = 37}, - [751] = {.lex_state = 261, .external_lex_state = 37}, - [752] = {.lex_state = 261, .external_lex_state = 37}, - [753] = {.lex_state = 184, .external_lex_state = 7}, - [754] = {.lex_state = 256, .external_lex_state = 4}, - [755] = {.lex_state = 256, .external_lex_state = 4}, - [756] = {.lex_state = 231, .external_lex_state = 23}, - [757] = {.lex_state = 259, .external_lex_state = 23}, - [758] = {.lex_state = 229, .external_lex_state = 6}, + [750] = {.lex_state = 263, .external_lex_state = 37}, + [751] = {.lex_state = 263, .external_lex_state = 37}, + [752] = {.lex_state = 263, .external_lex_state = 37}, + [753] = {.lex_state = 186, .external_lex_state = 7}, + [754] = {.lex_state = 258, .external_lex_state = 4}, + [755] = {.lex_state = 258, .external_lex_state = 4}, + [756] = {.lex_state = 233, .external_lex_state = 23}, + [757] = {.lex_state = 261, .external_lex_state = 23}, + [758] = {.lex_state = 231, .external_lex_state = 6}, [759] = {.lex_state = 151, .external_lex_state = 4}, - [760] = {.lex_state = 269, .external_lex_state = 11}, + [760] = {.lex_state = 271, .external_lex_state = 11}, [761] = {.lex_state = 158}, - [762] = {.lex_state = 163}, - [763] = {.lex_state = 163}, + [762] = {.lex_state = 165}, + [763] = {.lex_state = 165}, [764] = {.lex_state = 120, .external_lex_state = 2}, [765] = {.lex_state = 120, .external_lex_state = 2}, [766] = {.lex_state = 120, .external_lex_state = 2}, - [767] = {.lex_state = 269, .external_lex_state = 11}, - [768] = {.lex_state = 184, .external_lex_state = 7}, - [769] = {.lex_state = 179, .external_lex_state = 26}, - [770] = {.lex_state = 179, .external_lex_state = 26}, + [767] = {.lex_state = 271, .external_lex_state = 11}, + [768] = {.lex_state = 186, .external_lex_state = 7}, + [769] = {.lex_state = 181, .external_lex_state = 26}, + [770] = {.lex_state = 181, .external_lex_state = 26}, [771] = {.lex_state = 130}, [772] = {.lex_state = 120}, [773] = {.lex_state = 151, .external_lex_state = 4}, - [774] = {.lex_state = 184, .external_lex_state = 36}, - [775] = {.lex_state = 184, .external_lex_state = 36}, - [776] = {.lex_state = 259, .external_lex_state = 23}, - [777] = {.lex_state = 214, .external_lex_state = 30}, - [778] = {.lex_state = 214, .external_lex_state = 30}, - [779] = {.lex_state = 214, .external_lex_state = 30}, - [780] = {.lex_state = 214, .external_lex_state = 30}, - [781] = {.lex_state = 184, .external_lex_state = 7}, - [782] = {.lex_state = 214, .external_lex_state = 23}, - [783] = {.lex_state = 190, .external_lex_state = 27}, + [774] = {.lex_state = 186, .external_lex_state = 36}, + [775] = {.lex_state = 186, .external_lex_state = 36}, + [776] = {.lex_state = 261, .external_lex_state = 23}, + [777] = {.lex_state = 216, .external_lex_state = 30}, + [778] = {.lex_state = 216, .external_lex_state = 30}, + [779] = {.lex_state = 216, .external_lex_state = 30}, + [780] = {.lex_state = 216, .external_lex_state = 30}, + [781] = {.lex_state = 186, .external_lex_state = 7}, + [782] = {.lex_state = 216, .external_lex_state = 23}, + [783] = {.lex_state = 192, .external_lex_state = 27}, [784] = {.lex_state = 130}, - [785] = {.lex_state = 190, .external_lex_state = 27}, + [785] = {.lex_state = 192, .external_lex_state = 27}, [786] = {.lex_state = 130}, [787] = {.lex_state = 130, .external_lex_state = 25}, - [788] = {.lex_state = 261, .external_lex_state = 37}, - [789] = {.lex_state = 190, .external_lex_state = 27}, - [790] = {.lex_state = 261, .external_lex_state = 37}, - [791] = {.lex_state = 261, .external_lex_state = 37}, + [788] = {.lex_state = 263, .external_lex_state = 37}, + [789] = {.lex_state = 192, .external_lex_state = 27}, + [790] = {.lex_state = 263, .external_lex_state = 37}, + [791] = {.lex_state = 263, .external_lex_state = 37}, [792] = {.lex_state = 130, .external_lex_state = 25}, - [793] = {.lex_state = 261, .external_lex_state = 37}, - [794] = {.lex_state = 261, .external_lex_state = 37}, - [795] = {.lex_state = 261, .external_lex_state = 37}, + [793] = {.lex_state = 263, .external_lex_state = 37}, + [794] = {.lex_state = 263, .external_lex_state = 37}, + [795] = {.lex_state = 263, .external_lex_state = 37}, [796] = {.lex_state = 151, .external_lex_state = 4}, [797] = {.lex_state = 155, .external_lex_state = 36}, - [798] = {.lex_state = 184, .external_lex_state = 5}, - [799] = {.lex_state = 222, .external_lex_state = 4}, - [800] = {.lex_state = 184, .external_lex_state = 36}, + [798] = {.lex_state = 186, .external_lex_state = 5}, + [799] = {.lex_state = 224, .external_lex_state = 4}, + [800] = {.lex_state = 186, .external_lex_state = 36}, [801] = {.lex_state = 158}, - [802] = {.lex_state = 184, .external_lex_state = 36}, - [803] = {.lex_state = 184, .external_lex_state = 36}, - [804] = {.lex_state = 184, .external_lex_state = 36}, - [805] = {.lex_state = 163, .external_lex_state = 18}, + [802] = {.lex_state = 186, .external_lex_state = 36}, + [803] = {.lex_state = 186, .external_lex_state = 36}, + [804] = {.lex_state = 186, .external_lex_state = 36}, + [805] = {.lex_state = 165, .external_lex_state = 18}, [806] = {.lex_state = 130, .external_lex_state = 18}, [807] = {.lex_state = 130, .external_lex_state = 18}, [808] = {.lex_state = 130}, - [809] = {.lex_state = 202, .external_lex_state = 2}, + [809] = {.lex_state = 204, .external_lex_state = 2}, [810] = {.lex_state = 130}, - [811] = {.lex_state = 210, .external_lex_state = 2}, + [811] = {.lex_state = 212, .external_lex_state = 2}, [812] = {.lex_state = 130}, - [813] = {.lex_state = 202, .external_lex_state = 2}, + [813] = {.lex_state = 204, .external_lex_state = 2}, [814] = {.lex_state = 155, .external_lex_state = 36}, - [815] = {.lex_state = 202, .external_lex_state = 17}, + [815] = {.lex_state = 204, .external_lex_state = 17}, [816] = {.lex_state = 130}, - [817] = {.lex_state = 202, .external_lex_state = 17}, + [817] = {.lex_state = 204, .external_lex_state = 17}, [818] = {.lex_state = 130}, [819] = {.lex_state = 130, .external_lex_state = 25}, - [820] = {.lex_state = 261, .external_lex_state = 37}, - [821] = {.lex_state = 202, .external_lex_state = 17}, - [822] = {.lex_state = 261, .external_lex_state = 37}, - [823] = {.lex_state = 261, .external_lex_state = 37}, + [820] = {.lex_state = 263, .external_lex_state = 37}, + [821] = {.lex_state = 204, .external_lex_state = 17}, + [822] = {.lex_state = 263, .external_lex_state = 37}, + [823] = {.lex_state = 263, .external_lex_state = 37}, [824] = {.lex_state = 130, .external_lex_state = 25}, - [825] = {.lex_state = 261, .external_lex_state = 37}, - [826] = {.lex_state = 261, .external_lex_state = 37}, - [827] = {.lex_state = 261, .external_lex_state = 37}, + [825] = {.lex_state = 263, .external_lex_state = 37}, + [826] = {.lex_state = 263, .external_lex_state = 37}, + [827] = {.lex_state = 263, .external_lex_state = 37}, [828] = {.lex_state = 158}, [829] = {.lex_state = 130}, [830] = {.lex_state = 158}, [831] = {.lex_state = 130}, [832] = {.lex_state = 130, .external_lex_state = 25}, - [833] = {.lex_state = 261, .external_lex_state = 37}, + [833] = {.lex_state = 263, .external_lex_state = 37}, [834] = {.lex_state = 158}, - [835] = {.lex_state = 261, .external_lex_state = 37}, - [836] = {.lex_state = 261, .external_lex_state = 37}, + [835] = {.lex_state = 263, .external_lex_state = 37}, + [836] = {.lex_state = 263, .external_lex_state = 37}, [837] = {.lex_state = 130, .external_lex_state = 25}, - [838] = {.lex_state = 261, .external_lex_state = 37}, - [839] = {.lex_state = 261, .external_lex_state = 37}, - [840] = {.lex_state = 261, .external_lex_state = 37}, + [838] = {.lex_state = 263, .external_lex_state = 37}, + [839] = {.lex_state = 263, .external_lex_state = 37}, + [840] = {.lex_state = 263, .external_lex_state = 37}, [841] = {.lex_state = 130, .external_lex_state = 25}, [842] = {.lex_state = 130, .external_lex_state = 25}, [843] = {.lex_state = 130, .external_lex_state = 18}, - [844] = {.lex_state = 236, .external_lex_state = 28}, - [845] = {.lex_state = 175, .external_lex_state = 3}, - [846] = {.lex_state = 261, .external_lex_state = 37}, - [847] = {.lex_state = 236, .external_lex_state = 28}, - [848] = {.lex_state = 175, .external_lex_state = 3}, - [849] = {.lex_state = 261, .external_lex_state = 37}, + [844] = {.lex_state = 238, .external_lex_state = 28}, + [845] = {.lex_state = 177, .external_lex_state = 3}, + [846] = {.lex_state = 263, .external_lex_state = 37}, + [847] = {.lex_state = 238, .external_lex_state = 28}, + [848] = {.lex_state = 177, .external_lex_state = 3}, + [849] = {.lex_state = 263, .external_lex_state = 37}, [850] = {.lex_state = 130, .external_lex_state = 18}, - [851] = {.lex_state = 236, .external_lex_state = 28}, - [852] = {.lex_state = 175, .external_lex_state = 3}, - [853] = {.lex_state = 236, .external_lex_state = 28}, - [854] = {.lex_state = 175, .external_lex_state = 3}, - [855] = {.lex_state = 202, .external_lex_state = 17}, - [856] = {.lex_state = 202, .external_lex_state = 2}, - [857] = {.lex_state = 222, .external_lex_state = 4}, - [858] = {.lex_state = 202, .external_lex_state = 17}, - [859] = {.lex_state = 252, .external_lex_state = 35}, + [851] = {.lex_state = 238, .external_lex_state = 28}, + [852] = {.lex_state = 177, .external_lex_state = 3}, + [853] = {.lex_state = 238, .external_lex_state = 28}, + [854] = {.lex_state = 177, .external_lex_state = 3}, + [855] = {.lex_state = 204, .external_lex_state = 17}, + [856] = {.lex_state = 204, .external_lex_state = 2}, + [857] = {.lex_state = 224, .external_lex_state = 4}, + [858] = {.lex_state = 204, .external_lex_state = 17}, + [859] = {.lex_state = 254, .external_lex_state = 35}, [860] = {.lex_state = 130}, - [861] = {.lex_state = 224, .external_lex_state = 2}, + [861] = {.lex_state = 226, .external_lex_state = 2}, [862] = {.lex_state = 130}, [863] = {.lex_state = 130}, - [864] = {.lex_state = 226, .external_lex_state = 2}, + [864] = {.lex_state = 228, .external_lex_state = 2}, [865] = {.lex_state = 130}, - [866] = {.lex_state = 256, .external_lex_state = 4}, - [867] = {.lex_state = 181, .external_lex_state = 7}, - [868] = {.lex_state = 256, .external_lex_state = 4}, - [869] = {.lex_state = 181, .external_lex_state = 7}, + [866] = {.lex_state = 258, .external_lex_state = 4}, + [867] = {.lex_state = 183, .external_lex_state = 7}, + [868] = {.lex_state = 258, .external_lex_state = 4}, + [869] = {.lex_state = 183, .external_lex_state = 7}, [870] = {.lex_state = 130}, - [871] = {.lex_state = 271, .external_lex_state = 29}, - [872] = {.lex_state = 229, .external_lex_state = 6}, + [871] = {.lex_state = 273, .external_lex_state = 29}, + [872] = {.lex_state = 231, .external_lex_state = 6}, [873] = {.lex_state = 120}, [874] = {.lex_state = 151, .external_lex_state = 4}, [875] = {.lex_state = 130}, [876] = {.lex_state = 130}, - [877] = {.lex_state = 234, .external_lex_state = 2}, - [878] = {.lex_state = 198, .external_lex_state = 40}, - [879] = {.lex_state = 238, .external_lex_state = 20}, - [880] = {.lex_state = 222, .external_lex_state = 4}, + [877] = {.lex_state = 236, .external_lex_state = 2}, + [878] = {.lex_state = 200, .external_lex_state = 40}, + [879] = {.lex_state = 240, .external_lex_state = 20}, + [880] = {.lex_state = 224, .external_lex_state = 4}, [881] = {.lex_state = 158}, - [882] = {.lex_state = 163}, - [883] = {.lex_state = 163}, + [882] = {.lex_state = 165}, + [883] = {.lex_state = 165}, [884] = {.lex_state = 120, .external_lex_state = 2}, [885] = {.lex_state = 120, .external_lex_state = 2}, [886] = {.lex_state = 120, .external_lex_state = 2}, - [887] = {.lex_state = 198, .external_lex_state = 40}, - [888] = {.lex_state = 195, .external_lex_state = 19}, + [887] = {.lex_state = 200, .external_lex_state = 40}, + [888] = {.lex_state = 197, .external_lex_state = 19}, [889] = {.lex_state = 130}, - [890] = {.lex_state = 195, .external_lex_state = 19}, + [890] = {.lex_state = 197, .external_lex_state = 19}, [891] = {.lex_state = 130}, [892] = {.lex_state = 130, .external_lex_state = 25}, - [893] = {.lex_state = 261, .external_lex_state = 37}, - [894] = {.lex_state = 195, .external_lex_state = 19}, - [895] = {.lex_state = 261, .external_lex_state = 37}, - [896] = {.lex_state = 261, .external_lex_state = 37}, + [893] = {.lex_state = 263, .external_lex_state = 37}, + [894] = {.lex_state = 197, .external_lex_state = 19}, + [895] = {.lex_state = 263, .external_lex_state = 37}, + [896] = {.lex_state = 263, .external_lex_state = 37}, [897] = {.lex_state = 130, .external_lex_state = 25}, - [898] = {.lex_state = 261, .external_lex_state = 37}, - [899] = {.lex_state = 261, .external_lex_state = 37}, - [900] = {.lex_state = 261, .external_lex_state = 37}, - [901] = {.lex_state = 263, .external_lex_state = 29}, - [902] = {.lex_state = 242, .external_lex_state = 38}, - [903] = {.lex_state = 242, .external_lex_state = 38}, - [904] = {.lex_state = 240, .external_lex_state = 29}, + [898] = {.lex_state = 263, .external_lex_state = 37}, + [899] = {.lex_state = 263, .external_lex_state = 37}, + [900] = {.lex_state = 263, .external_lex_state = 37}, + [901] = {.lex_state = 265, .external_lex_state = 29}, + [902] = {.lex_state = 244, .external_lex_state = 38}, + [903] = {.lex_state = 244, .external_lex_state = 38}, + [904] = {.lex_state = 242, .external_lex_state = 29}, [905] = {.lex_state = 151, .external_lex_state = 4}, - [906] = {.lex_state = 242, .external_lex_state = 38}, - [907] = {.lex_state = 240, .external_lex_state = 38}, + [906] = {.lex_state = 244, .external_lex_state = 38}, + [907] = {.lex_state = 242, .external_lex_state = 38}, [908] = {.lex_state = 158}, - [909] = {.lex_state = 240, .external_lex_state = 38}, - [910] = {.lex_state = 240, .external_lex_state = 38}, - [911] = {.lex_state = 240, .external_lex_state = 38}, - [912] = {.lex_state = 163, .external_lex_state = 18}, + [909] = {.lex_state = 242, .external_lex_state = 38}, + [910] = {.lex_state = 242, .external_lex_state = 38}, + [911] = {.lex_state = 242, .external_lex_state = 38}, + [912] = {.lex_state = 165, .external_lex_state = 18}, [913] = {.lex_state = 130, .external_lex_state = 18}, [914] = {.lex_state = 130, .external_lex_state = 18}, [915] = {.lex_state = 130}, - [916] = {.lex_state = 202, .external_lex_state = 2}, + [916] = {.lex_state = 204, .external_lex_state = 2}, [917] = {.lex_state = 130}, - [918] = {.lex_state = 210, .external_lex_state = 2}, + [918] = {.lex_state = 212, .external_lex_state = 2}, [919] = {.lex_state = 130}, - [920] = {.lex_state = 202, .external_lex_state = 2}, - [921] = {.lex_state = 242, .external_lex_state = 38}, - [922] = {.lex_state = 240, .external_lex_state = 29}, - [923] = {.lex_state = 246, .external_lex_state = 31}, - [924] = {.lex_state = 242, .external_lex_state = 29}, - [925] = {.lex_state = 210, .external_lex_state = 17}, - [926] = {.lex_state = 210, .external_lex_state = 17}, + [920] = {.lex_state = 204, .external_lex_state = 2}, + [921] = {.lex_state = 244, .external_lex_state = 38}, + [922] = {.lex_state = 242, .external_lex_state = 29}, + [923] = {.lex_state = 248, .external_lex_state = 31}, + [924] = {.lex_state = 244, .external_lex_state = 29}, + [925] = {.lex_state = 212, .external_lex_state = 17}, + [926] = {.lex_state = 212, .external_lex_state = 17}, [927] = {.lex_state = 130}, [928] = {.lex_state = 120}, [929] = {.lex_state = 151, .external_lex_state = 4}, - [930] = {.lex_state = 206, .external_lex_state = 40}, - [931] = {.lex_state = 206, .external_lex_state = 40}, - [932] = {.lex_state = 265, .external_lex_state = 29}, - [933] = {.lex_state = 244, .external_lex_state = 38}, - [934] = {.lex_state = 244, .external_lex_state = 38}, - [935] = {.lex_state = 244, .external_lex_state = 38}, - [936] = {.lex_state = 244, .external_lex_state = 38}, - [937] = {.lex_state = 244, .external_lex_state = 29}, - [938] = {.lex_state = 184, .external_lex_state = 7}, - [939] = {.lex_state = 214, .external_lex_state = 30}, - [940] = {.lex_state = 214, .external_lex_state = 30}, - [941] = {.lex_state = 218, .external_lex_state = 30}, - [942] = {.lex_state = 214, .external_lex_state = 30}, + [930] = {.lex_state = 208, .external_lex_state = 40}, + [931] = {.lex_state = 208, .external_lex_state = 40}, + [932] = {.lex_state = 267, .external_lex_state = 29}, + [933] = {.lex_state = 246, .external_lex_state = 38}, + [934] = {.lex_state = 246, .external_lex_state = 38}, + [935] = {.lex_state = 246, .external_lex_state = 38}, + [936] = {.lex_state = 246, .external_lex_state = 38}, + [937] = {.lex_state = 246, .external_lex_state = 29}, + [938] = {.lex_state = 186, .external_lex_state = 7}, + [939] = {.lex_state = 216, .external_lex_state = 30}, + [940] = {.lex_state = 216, .external_lex_state = 30}, + [941] = {.lex_state = 220, .external_lex_state = 30}, + [942] = {.lex_state = 216, .external_lex_state = 30}, [943] = {.lex_state = 130, .external_lex_state = 18}, [944] = {.lex_state = 130, .external_lex_state = 18}, - [945] = {.lex_state = 214, .external_lex_state = 30}, + [945] = {.lex_state = 216, .external_lex_state = 30}, [946] = {.lex_state = 130}, - [947] = {.lex_state = 236, .external_lex_state = 28}, - [948] = {.lex_state = 214, .external_lex_state = 30}, + [947] = {.lex_state = 238, .external_lex_state = 28}, + [948] = {.lex_state = 216, .external_lex_state = 30}, [949] = {.lex_state = 130}, - [950] = {.lex_state = 236, .external_lex_state = 28}, - [951] = {.lex_state = 214, .external_lex_state = 30}, - [952] = {.lex_state = 214, .external_lex_state = 30}, - [953] = {.lex_state = 246, .external_lex_state = 31}, - [954] = {.lex_state = 246, .external_lex_state = 31}, - [955] = {.lex_state = 246, .external_lex_state = 31}, - [956] = {.lex_state = 163, .external_lex_state = 18}, + [950] = {.lex_state = 238, .external_lex_state = 28}, + [951] = {.lex_state = 216, .external_lex_state = 30}, + [952] = {.lex_state = 216, .external_lex_state = 30}, + [953] = {.lex_state = 248, .external_lex_state = 31}, + [954] = {.lex_state = 248, .external_lex_state = 31}, + [955] = {.lex_state = 248, .external_lex_state = 31}, + [956] = {.lex_state = 165, .external_lex_state = 18}, [957] = {.lex_state = 130, .external_lex_state = 18}, [958] = {.lex_state = 130, .external_lex_state = 18}, - [959] = {.lex_state = 214, .external_lex_state = 23}, - [960] = {.lex_state = 246, .external_lex_state = 31}, - [961] = {.lex_state = 249, .external_lex_state = 32}, + [959] = {.lex_state = 216, .external_lex_state = 23}, + [960] = {.lex_state = 248, .external_lex_state = 31}, + [961] = {.lex_state = 251, .external_lex_state = 32}, [962] = {.lex_state = 130}, - [963] = {.lex_state = 249, .external_lex_state = 32}, + [963] = {.lex_state = 251, .external_lex_state = 32}, [964] = {.lex_state = 130}, [965] = {.lex_state = 130, .external_lex_state = 25}, - [966] = {.lex_state = 261, .external_lex_state = 37}, - [967] = {.lex_state = 249, .external_lex_state = 32}, - [968] = {.lex_state = 261, .external_lex_state = 37}, - [969] = {.lex_state = 261, .external_lex_state = 37}, + [966] = {.lex_state = 263, .external_lex_state = 37}, + [967] = {.lex_state = 251, .external_lex_state = 32}, + [968] = {.lex_state = 263, .external_lex_state = 37}, + [969] = {.lex_state = 263, .external_lex_state = 37}, [970] = {.lex_state = 130, .external_lex_state = 25}, - [971] = {.lex_state = 261, .external_lex_state = 37}, - [972] = {.lex_state = 261, .external_lex_state = 37}, - [973] = {.lex_state = 261, .external_lex_state = 37}, - [974] = {.lex_state = 222, .external_lex_state = 33}, - [975] = {.lex_state = 179, .external_lex_state = 26}, + [971] = {.lex_state = 263, .external_lex_state = 37}, + [972] = {.lex_state = 263, .external_lex_state = 37}, + [973] = {.lex_state = 263, .external_lex_state = 37}, + [974] = {.lex_state = 224, .external_lex_state = 33}, + [975] = {.lex_state = 181, .external_lex_state = 26}, [976] = {.lex_state = 130}, - [977] = {.lex_state = 179, .external_lex_state = 26}, + [977] = {.lex_state = 181, .external_lex_state = 26}, [978] = {.lex_state = 130}, [979] = {.lex_state = 130, .external_lex_state = 25}, - [980] = {.lex_state = 261, .external_lex_state = 37}, - [981] = {.lex_state = 179, .external_lex_state = 26}, - [982] = {.lex_state = 261, .external_lex_state = 37}, - [983] = {.lex_state = 261, .external_lex_state = 37}, + [980] = {.lex_state = 263, .external_lex_state = 37}, + [981] = {.lex_state = 181, .external_lex_state = 26}, + [982] = {.lex_state = 263, .external_lex_state = 37}, + [983] = {.lex_state = 263, .external_lex_state = 37}, [984] = {.lex_state = 130, .external_lex_state = 25}, - [985] = {.lex_state = 261, .external_lex_state = 37}, - [986] = {.lex_state = 261, .external_lex_state = 37}, - [987] = {.lex_state = 261, .external_lex_state = 37}, - [988] = {.lex_state = 252, .external_lex_state = 34}, - [989] = {.lex_state = 252, .external_lex_state = 34}, - [990] = {.lex_state = 252, .external_lex_state = 34}, - [991] = {.lex_state = 252, .external_lex_state = 34}, + [985] = {.lex_state = 263, .external_lex_state = 37}, + [986] = {.lex_state = 263, .external_lex_state = 37}, + [987] = {.lex_state = 263, .external_lex_state = 37}, + [988] = {.lex_state = 254, .external_lex_state = 34}, + [989] = {.lex_state = 254, .external_lex_state = 34}, + [990] = {.lex_state = 254, .external_lex_state = 34}, + [991] = {.lex_state = 254, .external_lex_state = 34}, [992] = {.lex_state = 130, .external_lex_state = 18}, [993] = {.lex_state = 130, .external_lex_state = 18}, - [994] = {.lex_state = 252, .external_lex_state = 34}, + [994] = {.lex_state = 254, .external_lex_state = 34}, [995] = {.lex_state = 130}, - [996] = {.lex_state = 236, .external_lex_state = 28}, - [997] = {.lex_state = 252, .external_lex_state = 34}, + [996] = {.lex_state = 238, .external_lex_state = 28}, + [997] = {.lex_state = 254, .external_lex_state = 34}, [998] = {.lex_state = 130}, - [999] = {.lex_state = 236, .external_lex_state = 28}, - [1000] = {.lex_state = 252, .external_lex_state = 34}, - [1001] = {.lex_state = 252, .external_lex_state = 34}, - [1002] = {.lex_state = 184, .external_lex_state = 7}, - [1003] = {.lex_state = 226, .external_lex_state = 2}, - [1004] = {.lex_state = 254, .external_lex_state = 2}, - [1005] = {.lex_state = 254, .external_lex_state = 2}, - [1006] = {.lex_state = 184, .external_lex_state = 7}, + [999] = {.lex_state = 238, .external_lex_state = 28}, + [1000] = {.lex_state = 254, .external_lex_state = 34}, + [1001] = {.lex_state = 254, .external_lex_state = 34}, + [1002] = {.lex_state = 186, .external_lex_state = 7}, + [1003] = {.lex_state = 228, .external_lex_state = 2}, + [1004] = {.lex_state = 256, .external_lex_state = 2}, + [1005] = {.lex_state = 256, .external_lex_state = 2}, + [1006] = {.lex_state = 186, .external_lex_state = 7}, [1007] = {.lex_state = 130}, [1008] = {.lex_state = 151, .external_lex_state = 4}, - [1009] = {.lex_state = 273, .external_lex_state = 2}, - [1010] = {.lex_state = 249}, - [1011] = {.lex_state = 267, .external_lex_state = 39}, - [1012] = {.lex_state = 273, .external_lex_state = 2}, - [1013] = {.lex_state = 249}, - [1014] = {.lex_state = 267, .external_lex_state = 39}, - [1015] = {.lex_state = 184, .external_lex_state = 7}, - [1016] = {.lex_state = 256, .external_lex_state = 4}, - [1017] = {.lex_state = 256, .external_lex_state = 4}, + [1009] = {.lex_state = 275, .external_lex_state = 2}, + [1010] = {.lex_state = 251}, + [1011] = {.lex_state = 269, .external_lex_state = 39}, + [1012] = {.lex_state = 275, .external_lex_state = 2}, + [1013] = {.lex_state = 251}, + [1014] = {.lex_state = 269, .external_lex_state = 39}, + [1015] = {.lex_state = 186, .external_lex_state = 7}, + [1016] = {.lex_state = 258, .external_lex_state = 4}, + [1017] = {.lex_state = 258, .external_lex_state = 4}, [1018] = {.lex_state = 130, .external_lex_state = 25}, [1019] = {.lex_state = 130, .external_lex_state = 25}, [1020] = {.lex_state = 130, .external_lex_state = 18}, - [1021] = {.lex_state = 236, .external_lex_state = 28}, - [1022] = {.lex_state = 181, .external_lex_state = 11}, - [1023] = {.lex_state = 236, .external_lex_state = 28}, - [1024] = {.lex_state = 181, .external_lex_state = 11}, + [1021] = {.lex_state = 238, .external_lex_state = 28}, + [1022] = {.lex_state = 183, .external_lex_state = 11}, + [1023] = {.lex_state = 238, .external_lex_state = 28}, + [1024] = {.lex_state = 183, .external_lex_state = 11}, [1025] = {.lex_state = 130, .external_lex_state = 18}, - [1026] = {.lex_state = 236, .external_lex_state = 28}, - [1027] = {.lex_state = 181, .external_lex_state = 11}, - [1028] = {.lex_state = 236, .external_lex_state = 28}, - [1029] = {.lex_state = 181, .external_lex_state = 11}, - [1030] = {.lex_state = 184, .external_lex_state = 7}, - [1031] = {.lex_state = 256, .external_lex_state = 4}, - [1032] = {.lex_state = 184, .external_lex_state = 7}, - [1033] = {.lex_state = 269, .external_lex_state = 11}, - [1034] = {.lex_state = 269, .external_lex_state = 11}, - [1035] = {.lex_state = 184, .external_lex_state = 7}, + [1026] = {.lex_state = 238, .external_lex_state = 28}, + [1027] = {.lex_state = 183, .external_lex_state = 11}, + [1028] = {.lex_state = 238, .external_lex_state = 28}, + [1029] = {.lex_state = 183, .external_lex_state = 11}, + [1030] = {.lex_state = 186, .external_lex_state = 7}, + [1031] = {.lex_state = 258, .external_lex_state = 4}, + [1032] = {.lex_state = 186, .external_lex_state = 7}, + [1033] = {.lex_state = 271, .external_lex_state = 11}, + [1034] = {.lex_state = 271, .external_lex_state = 11}, + [1035] = {.lex_state = 186, .external_lex_state = 7}, [1036] = {.lex_state = 151, .external_lex_state = 4}, - [1037] = {.lex_state = 269, .external_lex_state = 11}, - [1038] = {.lex_state = 275, .external_lex_state = 11}, + [1037] = {.lex_state = 271, .external_lex_state = 11}, + [1038] = {.lex_state = 277, .external_lex_state = 11}, [1039] = {.lex_state = 158}, - [1040] = {.lex_state = 275, .external_lex_state = 11}, - [1041] = {.lex_state = 275, .external_lex_state = 11}, - [1042] = {.lex_state = 275, .external_lex_state = 11}, - [1043] = {.lex_state = 163, .external_lex_state = 18}, + [1040] = {.lex_state = 277, .external_lex_state = 11}, + [1041] = {.lex_state = 277, .external_lex_state = 11}, + [1042] = {.lex_state = 277, .external_lex_state = 11}, + [1043] = {.lex_state = 165, .external_lex_state = 18}, [1044] = {.lex_state = 130, .external_lex_state = 18}, [1045] = {.lex_state = 130, .external_lex_state = 18}, [1046] = {.lex_state = 130}, - [1047] = {.lex_state = 202, .external_lex_state = 2}, + [1047] = {.lex_state = 204, .external_lex_state = 2}, [1048] = {.lex_state = 130}, - [1049] = {.lex_state = 210, .external_lex_state = 2}, + [1049] = {.lex_state = 212, .external_lex_state = 2}, [1050] = {.lex_state = 130}, - [1051] = {.lex_state = 202, .external_lex_state = 2}, - [1052] = {.lex_state = 269, .external_lex_state = 11}, - [1053] = {.lex_state = 179, .external_lex_state = 26}, - [1054] = {.lex_state = 259, .external_lex_state = 23}, + [1051] = {.lex_state = 204, .external_lex_state = 2}, + [1052] = {.lex_state = 271, .external_lex_state = 11}, + [1053] = {.lex_state = 181, .external_lex_state = 26}, + [1054] = {.lex_state = 261, .external_lex_state = 23}, [1055] = {.lex_state = 151, .external_lex_state = 4}, - [1056] = {.lex_state = 275, .external_lex_state = 11}, - [1057] = {.lex_state = 275, .external_lex_state = 11}, - [1058] = {.lex_state = 184, .external_lex_state = 36}, - [1059] = {.lex_state = 184, .external_lex_state = 36}, - [1060] = {.lex_state = 214, .external_lex_state = 30}, + [1056] = {.lex_state = 277, .external_lex_state = 11}, + [1057] = {.lex_state = 277, .external_lex_state = 11}, + [1058] = {.lex_state = 186, .external_lex_state = 36}, + [1059] = {.lex_state = 186, .external_lex_state = 36}, + [1060] = {.lex_state = 216, .external_lex_state = 30}, [1061] = {.lex_state = 130, .external_lex_state = 25}, [1062] = {.lex_state = 130, .external_lex_state = 25}, [1063] = {.lex_state = 130, .external_lex_state = 18}, - [1064] = {.lex_state = 236, .external_lex_state = 28}, - [1065] = {.lex_state = 190, .external_lex_state = 27}, - [1066] = {.lex_state = 236, .external_lex_state = 28}, - [1067] = {.lex_state = 190, .external_lex_state = 27}, + [1064] = {.lex_state = 238, .external_lex_state = 28}, + [1065] = {.lex_state = 192, .external_lex_state = 27}, + [1066] = {.lex_state = 238, .external_lex_state = 28}, + [1067] = {.lex_state = 192, .external_lex_state = 27}, [1068] = {.lex_state = 130, .external_lex_state = 18}, - [1069] = {.lex_state = 236, .external_lex_state = 28}, - [1070] = {.lex_state = 190, .external_lex_state = 27}, - [1071] = {.lex_state = 236, .external_lex_state = 28}, - [1072] = {.lex_state = 190, .external_lex_state = 27}, - [1073] = {.lex_state = 184, .external_lex_state = 36}, - [1074] = {.lex_state = 184, .external_lex_state = 36}, + [1069] = {.lex_state = 238, .external_lex_state = 28}, + [1070] = {.lex_state = 192, .external_lex_state = 27}, + [1071] = {.lex_state = 238, .external_lex_state = 28}, + [1072] = {.lex_state = 192, .external_lex_state = 27}, + [1073] = {.lex_state = 186, .external_lex_state = 36}, + [1074] = {.lex_state = 186, .external_lex_state = 36}, [1075] = {.lex_state = 155, .external_lex_state = 36}, - [1076] = {.lex_state = 184, .external_lex_state = 5}, - [1077] = {.lex_state = 184, .external_lex_state = 36}, + [1076] = {.lex_state = 186, .external_lex_state = 5}, + [1077] = {.lex_state = 186, .external_lex_state = 36}, [1078] = {.lex_state = 130, .external_lex_state = 18}, [1079] = {.lex_state = 130, .external_lex_state = 18}, - [1080] = {.lex_state = 184, .external_lex_state = 36}, + [1080] = {.lex_state = 186, .external_lex_state = 36}, [1081] = {.lex_state = 130}, - [1082] = {.lex_state = 236, .external_lex_state = 28}, - [1083] = {.lex_state = 184, .external_lex_state = 36}, + [1082] = {.lex_state = 238, .external_lex_state = 28}, + [1083] = {.lex_state = 186, .external_lex_state = 36}, [1084] = {.lex_state = 130}, - [1085] = {.lex_state = 236, .external_lex_state = 28}, - [1086] = {.lex_state = 184, .external_lex_state = 36}, - [1087] = {.lex_state = 184, .external_lex_state = 36}, + [1085] = {.lex_state = 238, .external_lex_state = 28}, + [1086] = {.lex_state = 186, .external_lex_state = 36}, + [1087] = {.lex_state = 186, .external_lex_state = 36}, [1088] = {.lex_state = 130, .external_lex_state = 25}, [1089] = {.lex_state = 130, .external_lex_state = 25}, [1090] = {.lex_state = 130, .external_lex_state = 18}, - [1091] = {.lex_state = 236, .external_lex_state = 28}, - [1092] = {.lex_state = 202, .external_lex_state = 17}, - [1093] = {.lex_state = 236, .external_lex_state = 28}, - [1094] = {.lex_state = 202, .external_lex_state = 17}, + [1091] = {.lex_state = 238, .external_lex_state = 28}, + [1092] = {.lex_state = 204, .external_lex_state = 17}, + [1093] = {.lex_state = 238, .external_lex_state = 28}, + [1094] = {.lex_state = 204, .external_lex_state = 17}, [1095] = {.lex_state = 130, .external_lex_state = 18}, - [1096] = {.lex_state = 236, .external_lex_state = 28}, - [1097] = {.lex_state = 202, .external_lex_state = 17}, - [1098] = {.lex_state = 236, .external_lex_state = 28}, - [1099] = {.lex_state = 202, .external_lex_state = 17}, + [1096] = {.lex_state = 238, .external_lex_state = 28}, + [1097] = {.lex_state = 204, .external_lex_state = 17}, + [1098] = {.lex_state = 238, .external_lex_state = 28}, + [1099] = {.lex_state = 204, .external_lex_state = 17}, [1100] = {.lex_state = 130, .external_lex_state = 25}, [1101] = {.lex_state = 130, .external_lex_state = 25}, [1102] = {.lex_state = 130, .external_lex_state = 18}, - [1103] = {.lex_state = 236, .external_lex_state = 28}, + [1103] = {.lex_state = 238, .external_lex_state = 28}, [1104] = {.lex_state = 158}, - [1105] = {.lex_state = 236, .external_lex_state = 28}, + [1105] = {.lex_state = 238, .external_lex_state = 28}, [1106] = {.lex_state = 158}, [1107] = {.lex_state = 130, .external_lex_state = 18}, - [1108] = {.lex_state = 236, .external_lex_state = 28}, + [1108] = {.lex_state = 238, .external_lex_state = 28}, [1109] = {.lex_state = 158}, - [1110] = {.lex_state = 236, .external_lex_state = 28}, + [1110] = {.lex_state = 238, .external_lex_state = 28}, [1111] = {.lex_state = 158}, [1112] = {.lex_state = 130, .external_lex_state = 18}, [1113] = {.lex_state = 130, .external_lex_state = 18}, - [1114] = {.lex_state = 175, .external_lex_state = 3}, - [1115] = {.lex_state = 261, .external_lex_state = 37}, - [1116] = {.lex_state = 175, .external_lex_state = 3}, - [1117] = {.lex_state = 175, .external_lex_state = 3}, - [1118] = {.lex_state = 175, .external_lex_state = 3}, - [1119] = {.lex_state = 202, .external_lex_state = 17}, - [1120] = {.lex_state = 202, .external_lex_state = 2}, + [1114] = {.lex_state = 177, .external_lex_state = 3}, + [1115] = {.lex_state = 263, .external_lex_state = 37}, + [1116] = {.lex_state = 177, .external_lex_state = 3}, + [1117] = {.lex_state = 177, .external_lex_state = 3}, + [1118] = {.lex_state = 177, .external_lex_state = 3}, + [1119] = {.lex_state = 204, .external_lex_state = 17}, + [1120] = {.lex_state = 204, .external_lex_state = 2}, [1121] = {.lex_state = 130}, [1122] = {.lex_state = 130}, [1123] = {.lex_state = 130}, [1124] = {.lex_state = 130}, [1125] = {.lex_state = 130}, [1126] = {.lex_state = 130}, - [1127] = {.lex_state = 256, .external_lex_state = 4}, - [1128] = {.lex_state = 256, .external_lex_state = 4}, + [1127] = {.lex_state = 258, .external_lex_state = 4}, + [1128] = {.lex_state = 258, .external_lex_state = 4}, [1129] = {.lex_state = 130}, - [1130] = {.lex_state = 256, .external_lex_state = 4}, - [1131] = {.lex_state = 256, .external_lex_state = 4}, - [1132] = {.lex_state = 263, .external_lex_state = 29}, - [1133] = {.lex_state = 271, .external_lex_state = 29}, + [1130] = {.lex_state = 258, .external_lex_state = 4}, + [1131] = {.lex_state = 258, .external_lex_state = 4}, + [1132] = {.lex_state = 265, .external_lex_state = 29}, + [1133] = {.lex_state = 273, .external_lex_state = 29}, [1134] = {.lex_state = 151, .external_lex_state = 4}, - [1135] = {.lex_state = 277, .external_lex_state = 39}, + [1135] = {.lex_state = 279, .external_lex_state = 39}, [1136] = {.lex_state = 158}, - [1137] = {.lex_state = 163}, - [1138] = {.lex_state = 163}, + [1137] = {.lex_state = 165}, + [1138] = {.lex_state = 165}, [1139] = {.lex_state = 120, .external_lex_state = 2}, [1140] = {.lex_state = 120, .external_lex_state = 2}, [1141] = {.lex_state = 120, .external_lex_state = 2}, - [1142] = {.lex_state = 277, .external_lex_state = 39}, + [1142] = {.lex_state = 279, .external_lex_state = 39}, [1143] = {.lex_state = 130}, [1144] = {.lex_state = 130}, [1145] = {.lex_state = 151, .external_lex_state = 4}, - [1146] = {.lex_state = 198, .external_lex_state = 40}, - [1147] = {.lex_state = 238, .external_lex_state = 20}, - [1148] = {.lex_state = 222, .external_lex_state = 4}, - [1149] = {.lex_state = 238, .external_lex_state = 40}, + [1146] = {.lex_state = 200, .external_lex_state = 40}, + [1147] = {.lex_state = 240, .external_lex_state = 20}, + [1148] = {.lex_state = 224, .external_lex_state = 4}, + [1149] = {.lex_state = 240, .external_lex_state = 40}, [1150] = {.lex_state = 158}, - [1151] = {.lex_state = 238, .external_lex_state = 40}, - [1152] = {.lex_state = 238, .external_lex_state = 40}, - [1153] = {.lex_state = 238, .external_lex_state = 40}, - [1154] = {.lex_state = 163, .external_lex_state = 18}, + [1151] = {.lex_state = 240, .external_lex_state = 40}, + [1152] = {.lex_state = 240, .external_lex_state = 40}, + [1153] = {.lex_state = 240, .external_lex_state = 40}, + [1154] = {.lex_state = 165, .external_lex_state = 18}, [1155] = {.lex_state = 130, .external_lex_state = 18}, [1156] = {.lex_state = 130, .external_lex_state = 18}, [1157] = {.lex_state = 130}, - [1158] = {.lex_state = 202, .external_lex_state = 2}, + [1158] = {.lex_state = 204, .external_lex_state = 2}, [1159] = {.lex_state = 130}, - [1160] = {.lex_state = 210, .external_lex_state = 2}, + [1160] = {.lex_state = 212, .external_lex_state = 2}, [1161] = {.lex_state = 130}, - [1162] = {.lex_state = 202, .external_lex_state = 2}, - [1163] = {.lex_state = 198, .external_lex_state = 40}, + [1162] = {.lex_state = 204, .external_lex_state = 2}, + [1163] = {.lex_state = 200, .external_lex_state = 40}, [1164] = {.lex_state = 130, .external_lex_state = 25}, [1165] = {.lex_state = 130, .external_lex_state = 25}, [1166] = {.lex_state = 130, .external_lex_state = 18}, - [1167] = {.lex_state = 236, .external_lex_state = 28}, - [1168] = {.lex_state = 195, .external_lex_state = 19}, - [1169] = {.lex_state = 236, .external_lex_state = 28}, - [1170] = {.lex_state = 195, .external_lex_state = 19}, + [1167] = {.lex_state = 238, .external_lex_state = 28}, + [1168] = {.lex_state = 197, .external_lex_state = 19}, + [1169] = {.lex_state = 238, .external_lex_state = 28}, + [1170] = {.lex_state = 197, .external_lex_state = 19}, [1171] = {.lex_state = 130, .external_lex_state = 18}, - [1172] = {.lex_state = 236, .external_lex_state = 28}, - [1173] = {.lex_state = 195, .external_lex_state = 19}, - [1174] = {.lex_state = 236, .external_lex_state = 28}, - [1175] = {.lex_state = 195, .external_lex_state = 19}, + [1172] = {.lex_state = 238, .external_lex_state = 28}, + [1173] = {.lex_state = 197, .external_lex_state = 19}, + [1174] = {.lex_state = 238, .external_lex_state = 28}, + [1175] = {.lex_state = 197, .external_lex_state = 19}, [1176] = {.lex_state = 130}, - [1177] = {.lex_state = 240, .external_lex_state = 38}, - [1178] = {.lex_state = 240, .external_lex_state = 38}, - [1179] = {.lex_state = 242, .external_lex_state = 38}, - [1180] = {.lex_state = 240, .external_lex_state = 38}, + [1177] = {.lex_state = 242, .external_lex_state = 38}, + [1178] = {.lex_state = 242, .external_lex_state = 38}, + [1179] = {.lex_state = 244, .external_lex_state = 38}, + [1180] = {.lex_state = 242, .external_lex_state = 38}, [1181] = {.lex_state = 130, .external_lex_state = 18}, [1182] = {.lex_state = 130, .external_lex_state = 18}, - [1183] = {.lex_state = 240, .external_lex_state = 38}, + [1183] = {.lex_state = 242, .external_lex_state = 38}, [1184] = {.lex_state = 130}, - [1185] = {.lex_state = 236, .external_lex_state = 28}, - [1186] = {.lex_state = 240, .external_lex_state = 38}, + [1185] = {.lex_state = 238, .external_lex_state = 28}, + [1186] = {.lex_state = 242, .external_lex_state = 38}, [1187] = {.lex_state = 130}, - [1188] = {.lex_state = 236, .external_lex_state = 28}, - [1189] = {.lex_state = 240, .external_lex_state = 38}, - [1190] = {.lex_state = 240, .external_lex_state = 38}, - [1191] = {.lex_state = 240, .external_lex_state = 29}, - [1192] = {.lex_state = 210, .external_lex_state = 17}, - [1193] = {.lex_state = 265, .external_lex_state = 29}, + [1188] = {.lex_state = 238, .external_lex_state = 28}, + [1189] = {.lex_state = 242, .external_lex_state = 38}, + [1190] = {.lex_state = 242, .external_lex_state = 38}, + [1191] = {.lex_state = 242, .external_lex_state = 29}, + [1192] = {.lex_state = 212, .external_lex_state = 17}, + [1193] = {.lex_state = 267, .external_lex_state = 29}, [1194] = {.lex_state = 151, .external_lex_state = 4}, - [1195] = {.lex_state = 279, .external_lex_state = 39}, - [1196] = {.lex_state = 279, .external_lex_state = 39}, - [1197] = {.lex_state = 206, .external_lex_state = 40}, - [1198] = {.lex_state = 206, .external_lex_state = 40}, - [1199] = {.lex_state = 244, .external_lex_state = 38}, - [1200] = {.lex_state = 214, .external_lex_state = 30}, + [1195] = {.lex_state = 281, .external_lex_state = 39}, + [1196] = {.lex_state = 281, .external_lex_state = 39}, + [1197] = {.lex_state = 208, .external_lex_state = 40}, + [1198] = {.lex_state = 208, .external_lex_state = 40}, + [1199] = {.lex_state = 246, .external_lex_state = 38}, + [1200] = {.lex_state = 216, .external_lex_state = 30}, [1201] = {.lex_state = 130}, - [1202] = {.lex_state = 214, .external_lex_state = 30}, + [1202] = {.lex_state = 216, .external_lex_state = 30}, [1203] = {.lex_state = 130}, [1204] = {.lex_state = 130, .external_lex_state = 25}, - [1205] = {.lex_state = 261, .external_lex_state = 37}, - [1206] = {.lex_state = 214, .external_lex_state = 30}, - [1207] = {.lex_state = 261, .external_lex_state = 37}, - [1208] = {.lex_state = 261, .external_lex_state = 37}, + [1205] = {.lex_state = 263, .external_lex_state = 37}, + [1206] = {.lex_state = 216, .external_lex_state = 30}, + [1207] = {.lex_state = 263, .external_lex_state = 37}, + [1208] = {.lex_state = 263, .external_lex_state = 37}, [1209] = {.lex_state = 130, .external_lex_state = 25}, - [1210] = {.lex_state = 261, .external_lex_state = 37}, - [1211] = {.lex_state = 261, .external_lex_state = 37}, - [1212] = {.lex_state = 261, .external_lex_state = 37}, + [1210] = {.lex_state = 263, .external_lex_state = 37}, + [1211] = {.lex_state = 263, .external_lex_state = 37}, + [1212] = {.lex_state = 263, .external_lex_state = 37}, [1213] = {.lex_state = 130, .external_lex_state = 18}, [1214] = {.lex_state = 130, .external_lex_state = 18}, - [1215] = {.lex_state = 246, .external_lex_state = 31}, + [1215] = {.lex_state = 248, .external_lex_state = 31}, [1216] = {.lex_state = 130}, - [1217] = {.lex_state = 236, .external_lex_state = 28}, - [1218] = {.lex_state = 246, .external_lex_state = 31}, + [1217] = {.lex_state = 238, .external_lex_state = 28}, + [1218] = {.lex_state = 248, .external_lex_state = 31}, [1219] = {.lex_state = 130}, - [1220] = {.lex_state = 236, .external_lex_state = 28}, + [1220] = {.lex_state = 238, .external_lex_state = 28}, [1221] = {.lex_state = 130, .external_lex_state = 25}, [1222] = {.lex_state = 130, .external_lex_state = 25}, [1223] = {.lex_state = 130, .external_lex_state = 18}, - [1224] = {.lex_state = 236, .external_lex_state = 28}, - [1225] = {.lex_state = 249, .external_lex_state = 32}, - [1226] = {.lex_state = 236, .external_lex_state = 28}, - [1227] = {.lex_state = 249, .external_lex_state = 32}, + [1224] = {.lex_state = 238, .external_lex_state = 28}, + [1225] = {.lex_state = 251, .external_lex_state = 32}, + [1226] = {.lex_state = 238, .external_lex_state = 28}, + [1227] = {.lex_state = 251, .external_lex_state = 32}, [1228] = {.lex_state = 130, .external_lex_state = 18}, - [1229] = {.lex_state = 236, .external_lex_state = 28}, - [1230] = {.lex_state = 249, .external_lex_state = 32}, - [1231] = {.lex_state = 236, .external_lex_state = 28}, - [1232] = {.lex_state = 249, .external_lex_state = 32}, + [1229] = {.lex_state = 238, .external_lex_state = 28}, + [1230] = {.lex_state = 251, .external_lex_state = 32}, + [1231] = {.lex_state = 238, .external_lex_state = 28}, + [1232] = {.lex_state = 251, .external_lex_state = 32}, [1233] = {.lex_state = 130, .external_lex_state = 25}, [1234] = {.lex_state = 130, .external_lex_state = 25}, [1235] = {.lex_state = 130, .external_lex_state = 18}, - [1236] = {.lex_state = 236, .external_lex_state = 28}, - [1237] = {.lex_state = 179, .external_lex_state = 26}, - [1238] = {.lex_state = 236, .external_lex_state = 28}, - [1239] = {.lex_state = 179, .external_lex_state = 26}, + [1236] = {.lex_state = 238, .external_lex_state = 28}, + [1237] = {.lex_state = 181, .external_lex_state = 26}, + [1238] = {.lex_state = 238, .external_lex_state = 28}, + [1239] = {.lex_state = 181, .external_lex_state = 26}, [1240] = {.lex_state = 130, .external_lex_state = 18}, - [1241] = {.lex_state = 236, .external_lex_state = 28}, - [1242] = {.lex_state = 179, .external_lex_state = 26}, - [1243] = {.lex_state = 236, .external_lex_state = 28}, - [1244] = {.lex_state = 179, .external_lex_state = 26}, - [1245] = {.lex_state = 252, .external_lex_state = 34}, + [1241] = {.lex_state = 238, .external_lex_state = 28}, + [1242] = {.lex_state = 181, .external_lex_state = 26}, + [1243] = {.lex_state = 238, .external_lex_state = 28}, + [1244] = {.lex_state = 181, .external_lex_state = 26}, + [1245] = {.lex_state = 254, .external_lex_state = 34}, [1246] = {.lex_state = 130}, - [1247] = {.lex_state = 252, .external_lex_state = 34}, + [1247] = {.lex_state = 254, .external_lex_state = 34}, [1248] = {.lex_state = 130}, [1249] = {.lex_state = 130, .external_lex_state = 25}, - [1250] = {.lex_state = 261, .external_lex_state = 37}, - [1251] = {.lex_state = 252, .external_lex_state = 34}, - [1252] = {.lex_state = 261, .external_lex_state = 37}, - [1253] = {.lex_state = 261, .external_lex_state = 37}, + [1250] = {.lex_state = 263, .external_lex_state = 37}, + [1251] = {.lex_state = 254, .external_lex_state = 34}, + [1252] = {.lex_state = 263, .external_lex_state = 37}, + [1253] = {.lex_state = 263, .external_lex_state = 37}, [1254] = {.lex_state = 130, .external_lex_state = 25}, - [1255] = {.lex_state = 261, .external_lex_state = 37}, - [1256] = {.lex_state = 261, .external_lex_state = 37}, - [1257] = {.lex_state = 261, .external_lex_state = 37}, - [1258] = {.lex_state = 226, .external_lex_state = 2}, - [1259] = {.lex_state = 184, .external_lex_state = 7}, - [1260] = {.lex_state = 267, .external_lex_state = 39}, - [1261] = {.lex_state = 267, .external_lex_state = 39}, - [1262] = {.lex_state = 249}, - [1263] = {.lex_state = 256, .external_lex_state = 4}, - [1264] = {.lex_state = 273, .external_lex_state = 2}, - [1265] = {.lex_state = 273, .external_lex_state = 2}, - [1266] = {.lex_state = 249}, - [1267] = {.lex_state = 267, .external_lex_state = 39}, - [1268] = {.lex_state = 256, .external_lex_state = 4}, - [1269] = {.lex_state = 273, .external_lex_state = 2}, - [1270] = {.lex_state = 273, .external_lex_state = 2}, - [1271] = {.lex_state = 184, .external_lex_state = 7}, + [1255] = {.lex_state = 263, .external_lex_state = 37}, + [1256] = {.lex_state = 263, .external_lex_state = 37}, + [1257] = {.lex_state = 263, .external_lex_state = 37}, + [1258] = {.lex_state = 228, .external_lex_state = 2}, + [1259] = {.lex_state = 186, .external_lex_state = 7}, + [1260] = {.lex_state = 269, .external_lex_state = 39}, + [1261] = {.lex_state = 269, .external_lex_state = 39}, + [1262] = {.lex_state = 251}, + [1263] = {.lex_state = 258, .external_lex_state = 4}, + [1264] = {.lex_state = 275, .external_lex_state = 2}, + [1265] = {.lex_state = 275, .external_lex_state = 2}, + [1266] = {.lex_state = 251}, + [1267] = {.lex_state = 269, .external_lex_state = 39}, + [1268] = {.lex_state = 258, .external_lex_state = 4}, + [1269] = {.lex_state = 275, .external_lex_state = 2}, + [1270] = {.lex_state = 275, .external_lex_state = 2}, + [1271] = {.lex_state = 186, .external_lex_state = 7}, [1272] = {.lex_state = 130, .external_lex_state = 18}, [1273] = {.lex_state = 130, .external_lex_state = 18}, - [1274] = {.lex_state = 181, .external_lex_state = 11}, - [1275] = {.lex_state = 181, .external_lex_state = 11}, - [1276] = {.lex_state = 181, .external_lex_state = 11}, - [1277] = {.lex_state = 181, .external_lex_state = 11}, - [1278] = {.lex_state = 184, .external_lex_state = 7}, - [1279] = {.lex_state = 275, .external_lex_state = 11}, - [1280] = {.lex_state = 275, .external_lex_state = 11}, - [1281] = {.lex_state = 269, .external_lex_state = 11}, - [1282] = {.lex_state = 275, .external_lex_state = 11}, + [1274] = {.lex_state = 183, .external_lex_state = 11}, + [1275] = {.lex_state = 183, .external_lex_state = 11}, + [1276] = {.lex_state = 183, .external_lex_state = 11}, + [1277] = {.lex_state = 183, .external_lex_state = 11}, + [1278] = {.lex_state = 186, .external_lex_state = 7}, + [1279] = {.lex_state = 277, .external_lex_state = 11}, + [1280] = {.lex_state = 277, .external_lex_state = 11}, + [1281] = {.lex_state = 271, .external_lex_state = 11}, + [1282] = {.lex_state = 277, .external_lex_state = 11}, [1283] = {.lex_state = 130, .external_lex_state = 18}, [1284] = {.lex_state = 130, .external_lex_state = 18}, - [1285] = {.lex_state = 275, .external_lex_state = 11}, + [1285] = {.lex_state = 277, .external_lex_state = 11}, [1286] = {.lex_state = 130}, - [1287] = {.lex_state = 236, .external_lex_state = 28}, - [1288] = {.lex_state = 275, .external_lex_state = 11}, + [1287] = {.lex_state = 238, .external_lex_state = 28}, + [1288] = {.lex_state = 277, .external_lex_state = 11}, [1289] = {.lex_state = 130}, - [1290] = {.lex_state = 236, .external_lex_state = 28}, - [1291] = {.lex_state = 275, .external_lex_state = 11}, - [1292] = {.lex_state = 275, .external_lex_state = 11}, - [1293] = {.lex_state = 275, .external_lex_state = 11}, - [1294] = {.lex_state = 275, .external_lex_state = 11}, - [1295] = {.lex_state = 275, .external_lex_state = 11}, - [1296] = {.lex_state = 275, .external_lex_state = 11}, - [1297] = {.lex_state = 184, .external_lex_state = 36}, + [1290] = {.lex_state = 238, .external_lex_state = 28}, + [1291] = {.lex_state = 277, .external_lex_state = 11}, + [1292] = {.lex_state = 277, .external_lex_state = 11}, + [1293] = {.lex_state = 277, .external_lex_state = 11}, + [1294] = {.lex_state = 277, .external_lex_state = 11}, + [1295] = {.lex_state = 277, .external_lex_state = 11}, + [1296] = {.lex_state = 277, .external_lex_state = 11}, + [1297] = {.lex_state = 186, .external_lex_state = 36}, [1298] = {.lex_state = 130, .external_lex_state = 18}, [1299] = {.lex_state = 130, .external_lex_state = 18}, - [1300] = {.lex_state = 190, .external_lex_state = 27}, - [1301] = {.lex_state = 190, .external_lex_state = 27}, - [1302] = {.lex_state = 190, .external_lex_state = 27}, - [1303] = {.lex_state = 190, .external_lex_state = 27}, - [1304] = {.lex_state = 184, .external_lex_state = 36}, + [1300] = {.lex_state = 192, .external_lex_state = 27}, + [1301] = {.lex_state = 192, .external_lex_state = 27}, + [1302] = {.lex_state = 192, .external_lex_state = 27}, + [1303] = {.lex_state = 192, .external_lex_state = 27}, + [1304] = {.lex_state = 186, .external_lex_state = 36}, [1305] = {.lex_state = 130}, - [1306] = {.lex_state = 184, .external_lex_state = 36}, + [1306] = {.lex_state = 186, .external_lex_state = 36}, [1307] = {.lex_state = 130}, [1308] = {.lex_state = 130, .external_lex_state = 25}, - [1309] = {.lex_state = 261, .external_lex_state = 37}, - [1310] = {.lex_state = 184, .external_lex_state = 36}, - [1311] = {.lex_state = 261, .external_lex_state = 37}, - [1312] = {.lex_state = 261, .external_lex_state = 37}, + [1309] = {.lex_state = 263, .external_lex_state = 37}, + [1310] = {.lex_state = 186, .external_lex_state = 36}, + [1311] = {.lex_state = 263, .external_lex_state = 37}, + [1312] = {.lex_state = 263, .external_lex_state = 37}, [1313] = {.lex_state = 130, .external_lex_state = 25}, - [1314] = {.lex_state = 261, .external_lex_state = 37}, - [1315] = {.lex_state = 261, .external_lex_state = 37}, - [1316] = {.lex_state = 261, .external_lex_state = 37}, + [1314] = {.lex_state = 263, .external_lex_state = 37}, + [1315] = {.lex_state = 263, .external_lex_state = 37}, + [1316] = {.lex_state = 263, .external_lex_state = 37}, [1317] = {.lex_state = 130, .external_lex_state = 18}, [1318] = {.lex_state = 130, .external_lex_state = 18}, - [1319] = {.lex_state = 202, .external_lex_state = 17}, - [1320] = {.lex_state = 202, .external_lex_state = 17}, - [1321] = {.lex_state = 202, .external_lex_state = 17}, - [1322] = {.lex_state = 202, .external_lex_state = 17}, + [1319] = {.lex_state = 204, .external_lex_state = 17}, + [1320] = {.lex_state = 204, .external_lex_state = 17}, + [1321] = {.lex_state = 204, .external_lex_state = 17}, + [1322] = {.lex_state = 204, .external_lex_state = 17}, [1323] = {.lex_state = 130, .external_lex_state = 18}, [1324] = {.lex_state = 130, .external_lex_state = 18}, [1325] = {.lex_state = 158}, [1326] = {.lex_state = 158}, [1327] = {.lex_state = 158}, [1328] = {.lex_state = 158}, - [1329] = {.lex_state = 175, .external_lex_state = 3}, - [1330] = {.lex_state = 175, .external_lex_state = 3}, + [1329] = {.lex_state = 177, .external_lex_state = 3}, + [1330] = {.lex_state = 177, .external_lex_state = 3}, [1331] = {.lex_state = 130}, [1332] = {.lex_state = 130}, [1333] = {.lex_state = 130}, [1334] = {.lex_state = 130}, - [1335] = {.lex_state = 256, .external_lex_state = 4}, + [1335] = {.lex_state = 258, .external_lex_state = 4}, [1336] = {.lex_state = 130}, - [1337] = {.lex_state = 256, .external_lex_state = 4}, + [1337] = {.lex_state = 258, .external_lex_state = 4}, [1338] = {.lex_state = 130}, - [1339] = {.lex_state = 277, .external_lex_state = 39}, - [1340] = {.lex_state = 277, .external_lex_state = 39}, + [1339] = {.lex_state = 279, .external_lex_state = 39}, + [1340] = {.lex_state = 279, .external_lex_state = 39}, [1341] = {.lex_state = 130}, [1342] = {.lex_state = 151, .external_lex_state = 4}, - [1343] = {.lex_state = 277, .external_lex_state = 39}, - [1344] = {.lex_state = 281, .external_lex_state = 39}, + [1343] = {.lex_state = 279, .external_lex_state = 39}, + [1344] = {.lex_state = 283, .external_lex_state = 39}, [1345] = {.lex_state = 158}, - [1346] = {.lex_state = 281, .external_lex_state = 39}, - [1347] = {.lex_state = 281, .external_lex_state = 39}, - [1348] = {.lex_state = 281, .external_lex_state = 39}, - [1349] = {.lex_state = 163, .external_lex_state = 18}, + [1346] = {.lex_state = 283, .external_lex_state = 39}, + [1347] = {.lex_state = 283, .external_lex_state = 39}, + [1348] = {.lex_state = 283, .external_lex_state = 39}, + [1349] = {.lex_state = 165, .external_lex_state = 18}, [1350] = {.lex_state = 130, .external_lex_state = 18}, [1351] = {.lex_state = 130, .external_lex_state = 18}, [1352] = {.lex_state = 130}, - [1353] = {.lex_state = 202, .external_lex_state = 2}, + [1353] = {.lex_state = 204, .external_lex_state = 2}, [1354] = {.lex_state = 130}, - [1355] = {.lex_state = 210, .external_lex_state = 2}, + [1355] = {.lex_state = 212, .external_lex_state = 2}, [1356] = {.lex_state = 130}, - [1357] = {.lex_state = 202, .external_lex_state = 2}, - [1358] = {.lex_state = 277, .external_lex_state = 39}, - [1359] = {.lex_state = 238, .external_lex_state = 40}, - [1360] = {.lex_state = 238, .external_lex_state = 40}, - [1361] = {.lex_state = 198, .external_lex_state = 40}, - [1362] = {.lex_state = 238, .external_lex_state = 20}, - [1363] = {.lex_state = 238, .external_lex_state = 40}, + [1357] = {.lex_state = 204, .external_lex_state = 2}, + [1358] = {.lex_state = 279, .external_lex_state = 39}, + [1359] = {.lex_state = 240, .external_lex_state = 40}, + [1360] = {.lex_state = 240, .external_lex_state = 40}, + [1361] = {.lex_state = 200, .external_lex_state = 40}, + [1362] = {.lex_state = 240, .external_lex_state = 20}, + [1363] = {.lex_state = 240, .external_lex_state = 40}, [1364] = {.lex_state = 130, .external_lex_state = 18}, [1365] = {.lex_state = 130, .external_lex_state = 18}, - [1366] = {.lex_state = 238, .external_lex_state = 40}, + [1366] = {.lex_state = 240, .external_lex_state = 40}, [1367] = {.lex_state = 130}, - [1368] = {.lex_state = 236, .external_lex_state = 28}, - [1369] = {.lex_state = 238, .external_lex_state = 40}, + [1368] = {.lex_state = 238, .external_lex_state = 28}, + [1369] = {.lex_state = 240, .external_lex_state = 40}, [1370] = {.lex_state = 130}, - [1371] = {.lex_state = 236, .external_lex_state = 28}, - [1372] = {.lex_state = 238, .external_lex_state = 40}, - [1373] = {.lex_state = 238, .external_lex_state = 40}, + [1371] = {.lex_state = 238, .external_lex_state = 28}, + [1372] = {.lex_state = 240, .external_lex_state = 40}, + [1373] = {.lex_state = 240, .external_lex_state = 40}, [1374] = {.lex_state = 130, .external_lex_state = 18}, [1375] = {.lex_state = 130, .external_lex_state = 18}, - [1376] = {.lex_state = 195, .external_lex_state = 19}, - [1377] = {.lex_state = 195, .external_lex_state = 19}, - [1378] = {.lex_state = 195, .external_lex_state = 19}, - [1379] = {.lex_state = 195, .external_lex_state = 19}, - [1380] = {.lex_state = 240, .external_lex_state = 38}, + [1376] = {.lex_state = 197, .external_lex_state = 19}, + [1377] = {.lex_state = 197, .external_lex_state = 19}, + [1378] = {.lex_state = 197, .external_lex_state = 19}, + [1379] = {.lex_state = 197, .external_lex_state = 19}, + [1380] = {.lex_state = 242, .external_lex_state = 38}, [1381] = {.lex_state = 130}, - [1382] = {.lex_state = 240, .external_lex_state = 38}, + [1382] = {.lex_state = 242, .external_lex_state = 38}, [1383] = {.lex_state = 130}, [1384] = {.lex_state = 130, .external_lex_state = 25}, - [1385] = {.lex_state = 261, .external_lex_state = 37}, - [1386] = {.lex_state = 240, .external_lex_state = 38}, - [1387] = {.lex_state = 261, .external_lex_state = 37}, - [1388] = {.lex_state = 261, .external_lex_state = 37}, + [1385] = {.lex_state = 263, .external_lex_state = 37}, + [1386] = {.lex_state = 242, .external_lex_state = 38}, + [1387] = {.lex_state = 263, .external_lex_state = 37}, + [1388] = {.lex_state = 263, .external_lex_state = 37}, [1389] = {.lex_state = 130, .external_lex_state = 25}, - [1390] = {.lex_state = 261, .external_lex_state = 37}, - [1391] = {.lex_state = 261, .external_lex_state = 37}, - [1392] = {.lex_state = 261, .external_lex_state = 37}, - [1393] = {.lex_state = 279, .external_lex_state = 39}, - [1394] = {.lex_state = 279, .external_lex_state = 39}, - [1395] = {.lex_state = 279, .external_lex_state = 39}, - [1396] = {.lex_state = 279, .external_lex_state = 39}, - [1397] = {.lex_state = 206, .external_lex_state = 40}, + [1390] = {.lex_state = 263, .external_lex_state = 37}, + [1391] = {.lex_state = 263, .external_lex_state = 37}, + [1392] = {.lex_state = 263, .external_lex_state = 37}, + [1393] = {.lex_state = 281, .external_lex_state = 39}, + [1394] = {.lex_state = 281, .external_lex_state = 39}, + [1395] = {.lex_state = 281, .external_lex_state = 39}, + [1396] = {.lex_state = 281, .external_lex_state = 39}, + [1397] = {.lex_state = 208, .external_lex_state = 40}, [1398] = {.lex_state = 130, .external_lex_state = 25}, [1399] = {.lex_state = 130, .external_lex_state = 25}, [1400] = {.lex_state = 130, .external_lex_state = 18}, - [1401] = {.lex_state = 236, .external_lex_state = 28}, - [1402] = {.lex_state = 214, .external_lex_state = 30}, - [1403] = {.lex_state = 236, .external_lex_state = 28}, - [1404] = {.lex_state = 214, .external_lex_state = 30}, + [1401] = {.lex_state = 238, .external_lex_state = 28}, + [1402] = {.lex_state = 216, .external_lex_state = 30}, + [1403] = {.lex_state = 238, .external_lex_state = 28}, + [1404] = {.lex_state = 216, .external_lex_state = 30}, [1405] = {.lex_state = 130, .external_lex_state = 18}, - [1406] = {.lex_state = 236, .external_lex_state = 28}, - [1407] = {.lex_state = 214, .external_lex_state = 30}, - [1408] = {.lex_state = 236, .external_lex_state = 28}, - [1409] = {.lex_state = 214, .external_lex_state = 30}, - [1410] = {.lex_state = 246, .external_lex_state = 31}, + [1406] = {.lex_state = 238, .external_lex_state = 28}, + [1407] = {.lex_state = 216, .external_lex_state = 30}, + [1408] = {.lex_state = 238, .external_lex_state = 28}, + [1409] = {.lex_state = 216, .external_lex_state = 30}, + [1410] = {.lex_state = 248, .external_lex_state = 31}, [1411] = {.lex_state = 130}, - [1412] = {.lex_state = 246, .external_lex_state = 31}, + [1412] = {.lex_state = 248, .external_lex_state = 31}, [1413] = {.lex_state = 130}, [1414] = {.lex_state = 130, .external_lex_state = 25}, - [1415] = {.lex_state = 261, .external_lex_state = 37}, - [1416] = {.lex_state = 246, .external_lex_state = 31}, - [1417] = {.lex_state = 261, .external_lex_state = 37}, - [1418] = {.lex_state = 261, .external_lex_state = 37}, + [1415] = {.lex_state = 263, .external_lex_state = 37}, + [1416] = {.lex_state = 248, .external_lex_state = 31}, + [1417] = {.lex_state = 263, .external_lex_state = 37}, + [1418] = {.lex_state = 263, .external_lex_state = 37}, [1419] = {.lex_state = 130, .external_lex_state = 25}, - [1420] = {.lex_state = 261, .external_lex_state = 37}, - [1421] = {.lex_state = 261, .external_lex_state = 37}, - [1422] = {.lex_state = 261, .external_lex_state = 37}, + [1420] = {.lex_state = 263, .external_lex_state = 37}, + [1421] = {.lex_state = 263, .external_lex_state = 37}, + [1422] = {.lex_state = 263, .external_lex_state = 37}, [1423] = {.lex_state = 130, .external_lex_state = 18}, [1424] = {.lex_state = 130, .external_lex_state = 18}, - [1425] = {.lex_state = 249, .external_lex_state = 32}, - [1426] = {.lex_state = 249, .external_lex_state = 32}, - [1427] = {.lex_state = 249, .external_lex_state = 32}, - [1428] = {.lex_state = 249, .external_lex_state = 32}, + [1425] = {.lex_state = 251, .external_lex_state = 32}, + [1426] = {.lex_state = 251, .external_lex_state = 32}, + [1427] = {.lex_state = 251, .external_lex_state = 32}, + [1428] = {.lex_state = 251, .external_lex_state = 32}, [1429] = {.lex_state = 130, .external_lex_state = 18}, [1430] = {.lex_state = 130, .external_lex_state = 18}, - [1431] = {.lex_state = 179, .external_lex_state = 26}, - [1432] = {.lex_state = 179, .external_lex_state = 26}, - [1433] = {.lex_state = 179, .external_lex_state = 26}, - [1434] = {.lex_state = 179, .external_lex_state = 26}, + [1431] = {.lex_state = 181, .external_lex_state = 26}, + [1432] = {.lex_state = 181, .external_lex_state = 26}, + [1433] = {.lex_state = 181, .external_lex_state = 26}, + [1434] = {.lex_state = 181, .external_lex_state = 26}, [1435] = {.lex_state = 130, .external_lex_state = 25}, [1436] = {.lex_state = 130, .external_lex_state = 25}, [1437] = {.lex_state = 130, .external_lex_state = 18}, - [1438] = {.lex_state = 236, .external_lex_state = 28}, - [1439] = {.lex_state = 252, .external_lex_state = 34}, - [1440] = {.lex_state = 236, .external_lex_state = 28}, - [1441] = {.lex_state = 252, .external_lex_state = 34}, + [1438] = {.lex_state = 238, .external_lex_state = 28}, + [1439] = {.lex_state = 254, .external_lex_state = 34}, + [1440] = {.lex_state = 238, .external_lex_state = 28}, + [1441] = {.lex_state = 254, .external_lex_state = 34}, [1442] = {.lex_state = 130, .external_lex_state = 18}, - [1443] = {.lex_state = 236, .external_lex_state = 28}, - [1444] = {.lex_state = 252, .external_lex_state = 34}, - [1445] = {.lex_state = 236, .external_lex_state = 28}, - [1446] = {.lex_state = 252, .external_lex_state = 34}, - [1447] = {.lex_state = 256, .external_lex_state = 4}, - [1448] = {.lex_state = 273, .external_lex_state = 2}, - [1449] = {.lex_state = 273, .external_lex_state = 2}, - [1450] = {.lex_state = 256, .external_lex_state = 4}, - [1451] = {.lex_state = 273, .external_lex_state = 2}, - [1452] = {.lex_state = 181, .external_lex_state = 11}, - [1453] = {.lex_state = 181, .external_lex_state = 11}, - [1454] = {.lex_state = 275, .external_lex_state = 11}, + [1443] = {.lex_state = 238, .external_lex_state = 28}, + [1444] = {.lex_state = 254, .external_lex_state = 34}, + [1445] = {.lex_state = 238, .external_lex_state = 28}, + [1446] = {.lex_state = 254, .external_lex_state = 34}, + [1447] = {.lex_state = 258, .external_lex_state = 4}, + [1448] = {.lex_state = 275, .external_lex_state = 2}, + [1449] = {.lex_state = 275, .external_lex_state = 2}, + [1450] = {.lex_state = 258, .external_lex_state = 4}, + [1451] = {.lex_state = 275, .external_lex_state = 2}, + [1452] = {.lex_state = 183, .external_lex_state = 11}, + [1453] = {.lex_state = 183, .external_lex_state = 11}, + [1454] = {.lex_state = 277, .external_lex_state = 11}, [1455] = {.lex_state = 130}, - [1456] = {.lex_state = 275, .external_lex_state = 11}, + [1456] = {.lex_state = 277, .external_lex_state = 11}, [1457] = {.lex_state = 130}, [1458] = {.lex_state = 130, .external_lex_state = 25}, - [1459] = {.lex_state = 261, .external_lex_state = 37}, - [1460] = {.lex_state = 275, .external_lex_state = 11}, - [1461] = {.lex_state = 261, .external_lex_state = 37}, - [1462] = {.lex_state = 261, .external_lex_state = 37}, + [1459] = {.lex_state = 263, .external_lex_state = 37}, + [1460] = {.lex_state = 277, .external_lex_state = 11}, + [1461] = {.lex_state = 263, .external_lex_state = 37}, + [1462] = {.lex_state = 263, .external_lex_state = 37}, [1463] = {.lex_state = 130, .external_lex_state = 25}, - [1464] = {.lex_state = 261, .external_lex_state = 37}, - [1465] = {.lex_state = 261, .external_lex_state = 37}, - [1466] = {.lex_state = 261, .external_lex_state = 37}, - [1467] = {.lex_state = 275, .external_lex_state = 11}, - [1468] = {.lex_state = 190, .external_lex_state = 27}, - [1469] = {.lex_state = 190, .external_lex_state = 27}, + [1464] = {.lex_state = 263, .external_lex_state = 37}, + [1465] = {.lex_state = 263, .external_lex_state = 37}, + [1466] = {.lex_state = 263, .external_lex_state = 37}, + [1467] = {.lex_state = 277, .external_lex_state = 11}, + [1468] = {.lex_state = 192, .external_lex_state = 27}, + [1469] = {.lex_state = 192, .external_lex_state = 27}, [1470] = {.lex_state = 130, .external_lex_state = 25}, [1471] = {.lex_state = 130, .external_lex_state = 25}, [1472] = {.lex_state = 130, .external_lex_state = 18}, - [1473] = {.lex_state = 236, .external_lex_state = 28}, - [1474] = {.lex_state = 184, .external_lex_state = 36}, - [1475] = {.lex_state = 236, .external_lex_state = 28}, - [1476] = {.lex_state = 184, .external_lex_state = 36}, + [1473] = {.lex_state = 238, .external_lex_state = 28}, + [1474] = {.lex_state = 186, .external_lex_state = 36}, + [1475] = {.lex_state = 238, .external_lex_state = 28}, + [1476] = {.lex_state = 186, .external_lex_state = 36}, [1477] = {.lex_state = 130, .external_lex_state = 18}, - [1478] = {.lex_state = 236, .external_lex_state = 28}, - [1479] = {.lex_state = 184, .external_lex_state = 36}, - [1480] = {.lex_state = 236, .external_lex_state = 28}, - [1481] = {.lex_state = 184, .external_lex_state = 36}, - [1482] = {.lex_state = 202, .external_lex_state = 17}, - [1483] = {.lex_state = 202, .external_lex_state = 17}, + [1478] = {.lex_state = 238, .external_lex_state = 28}, + [1479] = {.lex_state = 186, .external_lex_state = 36}, + [1480] = {.lex_state = 238, .external_lex_state = 28}, + [1481] = {.lex_state = 186, .external_lex_state = 36}, + [1482] = {.lex_state = 204, .external_lex_state = 17}, + [1483] = {.lex_state = 204, .external_lex_state = 17}, [1484] = {.lex_state = 158}, [1485] = {.lex_state = 158}, [1486] = {.lex_state = 130}, [1487] = {.lex_state = 130}, [1488] = {.lex_state = 130}, - [1489] = {.lex_state = 281, .external_lex_state = 39}, - [1490] = {.lex_state = 281, .external_lex_state = 39}, - [1491] = {.lex_state = 277, .external_lex_state = 39}, - [1492] = {.lex_state = 281, .external_lex_state = 39}, + [1489] = {.lex_state = 283, .external_lex_state = 39}, + [1490] = {.lex_state = 283, .external_lex_state = 39}, + [1491] = {.lex_state = 279, .external_lex_state = 39}, + [1492] = {.lex_state = 283, .external_lex_state = 39}, [1493] = {.lex_state = 130, .external_lex_state = 18}, [1494] = {.lex_state = 130, .external_lex_state = 18}, - [1495] = {.lex_state = 281, .external_lex_state = 39}, + [1495] = {.lex_state = 283, .external_lex_state = 39}, [1496] = {.lex_state = 130}, - [1497] = {.lex_state = 236, .external_lex_state = 28}, - [1498] = {.lex_state = 281, .external_lex_state = 39}, + [1497] = {.lex_state = 238, .external_lex_state = 28}, + [1498] = {.lex_state = 283, .external_lex_state = 39}, [1499] = {.lex_state = 130}, - [1500] = {.lex_state = 236, .external_lex_state = 28}, - [1501] = {.lex_state = 281, .external_lex_state = 39}, - [1502] = {.lex_state = 281, .external_lex_state = 39}, - [1503] = {.lex_state = 238, .external_lex_state = 40}, + [1500] = {.lex_state = 238, .external_lex_state = 28}, + [1501] = {.lex_state = 283, .external_lex_state = 39}, + [1502] = {.lex_state = 283, .external_lex_state = 39}, + [1503] = {.lex_state = 240, .external_lex_state = 40}, [1504] = {.lex_state = 130}, - [1505] = {.lex_state = 238, .external_lex_state = 40}, + [1505] = {.lex_state = 240, .external_lex_state = 40}, [1506] = {.lex_state = 130}, [1507] = {.lex_state = 130, .external_lex_state = 25}, - [1508] = {.lex_state = 261, .external_lex_state = 37}, - [1509] = {.lex_state = 238, .external_lex_state = 40}, - [1510] = {.lex_state = 261, .external_lex_state = 37}, - [1511] = {.lex_state = 261, .external_lex_state = 37}, + [1508] = {.lex_state = 263, .external_lex_state = 37}, + [1509] = {.lex_state = 240, .external_lex_state = 40}, + [1510] = {.lex_state = 263, .external_lex_state = 37}, + [1511] = {.lex_state = 263, .external_lex_state = 37}, [1512] = {.lex_state = 130, .external_lex_state = 25}, - [1513] = {.lex_state = 261, .external_lex_state = 37}, - [1514] = {.lex_state = 261, .external_lex_state = 37}, - [1515] = {.lex_state = 261, .external_lex_state = 37}, - [1516] = {.lex_state = 195, .external_lex_state = 19}, - [1517] = {.lex_state = 195, .external_lex_state = 19}, + [1513] = {.lex_state = 263, .external_lex_state = 37}, + [1514] = {.lex_state = 263, .external_lex_state = 37}, + [1515] = {.lex_state = 263, .external_lex_state = 37}, + [1516] = {.lex_state = 197, .external_lex_state = 19}, + [1517] = {.lex_state = 197, .external_lex_state = 19}, [1518] = {.lex_state = 130, .external_lex_state = 25}, [1519] = {.lex_state = 130, .external_lex_state = 25}, [1520] = {.lex_state = 130, .external_lex_state = 18}, - [1521] = {.lex_state = 236, .external_lex_state = 28}, - [1522] = {.lex_state = 240, .external_lex_state = 38}, - [1523] = {.lex_state = 236, .external_lex_state = 28}, - [1524] = {.lex_state = 240, .external_lex_state = 38}, + [1521] = {.lex_state = 238, .external_lex_state = 28}, + [1522] = {.lex_state = 242, .external_lex_state = 38}, + [1523] = {.lex_state = 238, .external_lex_state = 28}, + [1524] = {.lex_state = 242, .external_lex_state = 38}, [1525] = {.lex_state = 130, .external_lex_state = 18}, - [1526] = {.lex_state = 236, .external_lex_state = 28}, - [1527] = {.lex_state = 240, .external_lex_state = 38}, - [1528] = {.lex_state = 236, .external_lex_state = 28}, - [1529] = {.lex_state = 240, .external_lex_state = 38}, - [1530] = {.lex_state = 279, .external_lex_state = 39}, + [1526] = {.lex_state = 238, .external_lex_state = 28}, + [1527] = {.lex_state = 242, .external_lex_state = 38}, + [1528] = {.lex_state = 238, .external_lex_state = 28}, + [1529] = {.lex_state = 242, .external_lex_state = 38}, + [1530] = {.lex_state = 281, .external_lex_state = 39}, [1531] = {.lex_state = 130, .external_lex_state = 18}, [1532] = {.lex_state = 130, .external_lex_state = 18}, - [1533] = {.lex_state = 214, .external_lex_state = 30}, - [1534] = {.lex_state = 214, .external_lex_state = 30}, - [1535] = {.lex_state = 214, .external_lex_state = 30}, - [1536] = {.lex_state = 214, .external_lex_state = 30}, + [1533] = {.lex_state = 216, .external_lex_state = 30}, + [1534] = {.lex_state = 216, .external_lex_state = 30}, + [1535] = {.lex_state = 216, .external_lex_state = 30}, + [1536] = {.lex_state = 216, .external_lex_state = 30}, [1537] = {.lex_state = 130, .external_lex_state = 25}, [1538] = {.lex_state = 130, .external_lex_state = 25}, [1539] = {.lex_state = 130, .external_lex_state = 18}, - [1540] = {.lex_state = 236, .external_lex_state = 28}, - [1541] = {.lex_state = 246, .external_lex_state = 31}, - [1542] = {.lex_state = 236, .external_lex_state = 28}, - [1543] = {.lex_state = 246, .external_lex_state = 31}, + [1540] = {.lex_state = 238, .external_lex_state = 28}, + [1541] = {.lex_state = 248, .external_lex_state = 31}, + [1542] = {.lex_state = 238, .external_lex_state = 28}, + [1543] = {.lex_state = 248, .external_lex_state = 31}, [1544] = {.lex_state = 130, .external_lex_state = 18}, - [1545] = {.lex_state = 236, .external_lex_state = 28}, - [1546] = {.lex_state = 246, .external_lex_state = 31}, - [1547] = {.lex_state = 236, .external_lex_state = 28}, - [1548] = {.lex_state = 246, .external_lex_state = 31}, - [1549] = {.lex_state = 249, .external_lex_state = 32}, - [1550] = {.lex_state = 249, .external_lex_state = 32}, - [1551] = {.lex_state = 179, .external_lex_state = 26}, - [1552] = {.lex_state = 179, .external_lex_state = 26}, + [1545] = {.lex_state = 238, .external_lex_state = 28}, + [1546] = {.lex_state = 248, .external_lex_state = 31}, + [1547] = {.lex_state = 238, .external_lex_state = 28}, + [1548] = {.lex_state = 248, .external_lex_state = 31}, + [1549] = {.lex_state = 251, .external_lex_state = 32}, + [1550] = {.lex_state = 251, .external_lex_state = 32}, + [1551] = {.lex_state = 181, .external_lex_state = 26}, + [1552] = {.lex_state = 181, .external_lex_state = 26}, [1553] = {.lex_state = 130, .external_lex_state = 18}, [1554] = {.lex_state = 130, .external_lex_state = 18}, - [1555] = {.lex_state = 252, .external_lex_state = 34}, - [1556] = {.lex_state = 252, .external_lex_state = 34}, - [1557] = {.lex_state = 252, .external_lex_state = 34}, - [1558] = {.lex_state = 252, .external_lex_state = 34}, - [1559] = {.lex_state = 256, .external_lex_state = 4}, - [1560] = {.lex_state = 256, .external_lex_state = 4}, + [1555] = {.lex_state = 254, .external_lex_state = 34}, + [1556] = {.lex_state = 254, .external_lex_state = 34}, + [1557] = {.lex_state = 254, .external_lex_state = 34}, + [1558] = {.lex_state = 254, .external_lex_state = 34}, + [1559] = {.lex_state = 258, .external_lex_state = 4}, + [1560] = {.lex_state = 258, .external_lex_state = 4}, [1561] = {.lex_state = 130, .external_lex_state = 25}, [1562] = {.lex_state = 130, .external_lex_state = 25}, [1563] = {.lex_state = 130, .external_lex_state = 18}, - [1564] = {.lex_state = 236, .external_lex_state = 28}, - [1565] = {.lex_state = 275, .external_lex_state = 11}, - [1566] = {.lex_state = 236, .external_lex_state = 28}, - [1567] = {.lex_state = 275, .external_lex_state = 11}, + [1564] = {.lex_state = 238, .external_lex_state = 28}, + [1565] = {.lex_state = 277, .external_lex_state = 11}, + [1566] = {.lex_state = 238, .external_lex_state = 28}, + [1567] = {.lex_state = 277, .external_lex_state = 11}, [1568] = {.lex_state = 130, .external_lex_state = 18}, - [1569] = {.lex_state = 236, .external_lex_state = 28}, - [1570] = {.lex_state = 275, .external_lex_state = 11}, - [1571] = {.lex_state = 236, .external_lex_state = 28}, - [1572] = {.lex_state = 275, .external_lex_state = 11}, + [1569] = {.lex_state = 238, .external_lex_state = 28}, + [1570] = {.lex_state = 277, .external_lex_state = 11}, + [1571] = {.lex_state = 238, .external_lex_state = 28}, + [1572] = {.lex_state = 277, .external_lex_state = 11}, [1573] = {.lex_state = 130, .external_lex_state = 18}, [1574] = {.lex_state = 130, .external_lex_state = 18}, - [1575] = {.lex_state = 184, .external_lex_state = 36}, - [1576] = {.lex_state = 184, .external_lex_state = 36}, - [1577] = {.lex_state = 184, .external_lex_state = 36}, - [1578] = {.lex_state = 184, .external_lex_state = 36}, - [1579] = {.lex_state = 281, .external_lex_state = 39}, + [1575] = {.lex_state = 186, .external_lex_state = 36}, + [1576] = {.lex_state = 186, .external_lex_state = 36}, + [1577] = {.lex_state = 186, .external_lex_state = 36}, + [1578] = {.lex_state = 186, .external_lex_state = 36}, + [1579] = {.lex_state = 283, .external_lex_state = 39}, [1580] = {.lex_state = 130}, - [1581] = {.lex_state = 281, .external_lex_state = 39}, + [1581] = {.lex_state = 283, .external_lex_state = 39}, [1582] = {.lex_state = 130}, [1583] = {.lex_state = 130, .external_lex_state = 25}, - [1584] = {.lex_state = 261, .external_lex_state = 37}, - [1585] = {.lex_state = 281, .external_lex_state = 39}, - [1586] = {.lex_state = 261, .external_lex_state = 37}, - [1587] = {.lex_state = 261, .external_lex_state = 37}, + [1584] = {.lex_state = 263, .external_lex_state = 37}, + [1585] = {.lex_state = 283, .external_lex_state = 39}, + [1586] = {.lex_state = 263, .external_lex_state = 37}, + [1587] = {.lex_state = 263, .external_lex_state = 37}, [1588] = {.lex_state = 130, .external_lex_state = 25}, - [1589] = {.lex_state = 261, .external_lex_state = 37}, - [1590] = {.lex_state = 261, .external_lex_state = 37}, - [1591] = {.lex_state = 261, .external_lex_state = 37}, + [1589] = {.lex_state = 263, .external_lex_state = 37}, + [1590] = {.lex_state = 263, .external_lex_state = 37}, + [1591] = {.lex_state = 263, .external_lex_state = 37}, [1592] = {.lex_state = 130, .external_lex_state = 25}, [1593] = {.lex_state = 130, .external_lex_state = 25}, [1594] = {.lex_state = 130, .external_lex_state = 18}, - [1595] = {.lex_state = 236, .external_lex_state = 28}, - [1596] = {.lex_state = 238, .external_lex_state = 40}, - [1597] = {.lex_state = 236, .external_lex_state = 28}, - [1598] = {.lex_state = 238, .external_lex_state = 40}, + [1595] = {.lex_state = 238, .external_lex_state = 28}, + [1596] = {.lex_state = 240, .external_lex_state = 40}, + [1597] = {.lex_state = 238, .external_lex_state = 28}, + [1598] = {.lex_state = 240, .external_lex_state = 40}, [1599] = {.lex_state = 130, .external_lex_state = 18}, - [1600] = {.lex_state = 236, .external_lex_state = 28}, - [1601] = {.lex_state = 238, .external_lex_state = 40}, - [1602] = {.lex_state = 236, .external_lex_state = 28}, - [1603] = {.lex_state = 238, .external_lex_state = 40}, + [1600] = {.lex_state = 238, .external_lex_state = 28}, + [1601] = {.lex_state = 240, .external_lex_state = 40}, + [1602] = {.lex_state = 238, .external_lex_state = 28}, + [1603] = {.lex_state = 240, .external_lex_state = 40}, [1604] = {.lex_state = 130, .external_lex_state = 18}, [1605] = {.lex_state = 130, .external_lex_state = 18}, - [1606] = {.lex_state = 240, .external_lex_state = 38}, - [1607] = {.lex_state = 240, .external_lex_state = 38}, - [1608] = {.lex_state = 240, .external_lex_state = 38}, - [1609] = {.lex_state = 240, .external_lex_state = 38}, - [1610] = {.lex_state = 214, .external_lex_state = 30}, - [1611] = {.lex_state = 214, .external_lex_state = 30}, + [1606] = {.lex_state = 242, .external_lex_state = 38}, + [1607] = {.lex_state = 242, .external_lex_state = 38}, + [1608] = {.lex_state = 242, .external_lex_state = 38}, + [1609] = {.lex_state = 242, .external_lex_state = 38}, + [1610] = {.lex_state = 216, .external_lex_state = 30}, + [1611] = {.lex_state = 216, .external_lex_state = 30}, [1612] = {.lex_state = 130, .external_lex_state = 18}, [1613] = {.lex_state = 130, .external_lex_state = 18}, - [1614] = {.lex_state = 246, .external_lex_state = 31}, - [1615] = {.lex_state = 246, .external_lex_state = 31}, - [1616] = {.lex_state = 246, .external_lex_state = 31}, - [1617] = {.lex_state = 246, .external_lex_state = 31}, - [1618] = {.lex_state = 252, .external_lex_state = 34}, - [1619] = {.lex_state = 252, .external_lex_state = 34}, + [1614] = {.lex_state = 248, .external_lex_state = 31}, + [1615] = {.lex_state = 248, .external_lex_state = 31}, + [1616] = {.lex_state = 248, .external_lex_state = 31}, + [1617] = {.lex_state = 248, .external_lex_state = 31}, + [1618] = {.lex_state = 254, .external_lex_state = 34}, + [1619] = {.lex_state = 254, .external_lex_state = 34}, [1620] = {.lex_state = 130, .external_lex_state = 18}, [1621] = {.lex_state = 130, .external_lex_state = 18}, - [1622] = {.lex_state = 275, .external_lex_state = 11}, - [1623] = {.lex_state = 275, .external_lex_state = 11}, - [1624] = {.lex_state = 275, .external_lex_state = 11}, - [1625] = {.lex_state = 275, .external_lex_state = 11}, - [1626] = {.lex_state = 184, .external_lex_state = 36}, - [1627] = {.lex_state = 184, .external_lex_state = 36}, + [1622] = {.lex_state = 277, .external_lex_state = 11}, + [1623] = {.lex_state = 277, .external_lex_state = 11}, + [1624] = {.lex_state = 277, .external_lex_state = 11}, + [1625] = {.lex_state = 277, .external_lex_state = 11}, + [1626] = {.lex_state = 186, .external_lex_state = 36}, + [1627] = {.lex_state = 186, .external_lex_state = 36}, [1628] = {.lex_state = 130, .external_lex_state = 25}, [1629] = {.lex_state = 130, .external_lex_state = 25}, [1630] = {.lex_state = 130, .external_lex_state = 18}, - [1631] = {.lex_state = 236, .external_lex_state = 28}, - [1632] = {.lex_state = 281, .external_lex_state = 39}, - [1633] = {.lex_state = 236, .external_lex_state = 28}, - [1634] = {.lex_state = 281, .external_lex_state = 39}, + [1631] = {.lex_state = 238, .external_lex_state = 28}, + [1632] = {.lex_state = 283, .external_lex_state = 39}, + [1633] = {.lex_state = 238, .external_lex_state = 28}, + [1634] = {.lex_state = 283, .external_lex_state = 39}, [1635] = {.lex_state = 130, .external_lex_state = 18}, - [1636] = {.lex_state = 236, .external_lex_state = 28}, - [1637] = {.lex_state = 281, .external_lex_state = 39}, - [1638] = {.lex_state = 236, .external_lex_state = 28}, - [1639] = {.lex_state = 281, .external_lex_state = 39}, + [1636] = {.lex_state = 238, .external_lex_state = 28}, + [1637] = {.lex_state = 283, .external_lex_state = 39}, + [1638] = {.lex_state = 238, .external_lex_state = 28}, + [1639] = {.lex_state = 283, .external_lex_state = 39}, [1640] = {.lex_state = 130, .external_lex_state = 18}, [1641] = {.lex_state = 130, .external_lex_state = 18}, - [1642] = {.lex_state = 238, .external_lex_state = 40}, - [1643] = {.lex_state = 238, .external_lex_state = 40}, - [1644] = {.lex_state = 238, .external_lex_state = 40}, - [1645] = {.lex_state = 238, .external_lex_state = 40}, - [1646] = {.lex_state = 240, .external_lex_state = 38}, - [1647] = {.lex_state = 240, .external_lex_state = 38}, - [1648] = {.lex_state = 246, .external_lex_state = 31}, - [1649] = {.lex_state = 246, .external_lex_state = 31}, - [1650] = {.lex_state = 275, .external_lex_state = 11}, - [1651] = {.lex_state = 275, .external_lex_state = 11}, + [1642] = {.lex_state = 240, .external_lex_state = 40}, + [1643] = {.lex_state = 240, .external_lex_state = 40}, + [1644] = {.lex_state = 240, .external_lex_state = 40}, + [1645] = {.lex_state = 240, .external_lex_state = 40}, + [1646] = {.lex_state = 242, .external_lex_state = 38}, + [1647] = {.lex_state = 242, .external_lex_state = 38}, + [1648] = {.lex_state = 248, .external_lex_state = 31}, + [1649] = {.lex_state = 248, .external_lex_state = 31}, + [1650] = {.lex_state = 277, .external_lex_state = 11}, + [1651] = {.lex_state = 277, .external_lex_state = 11}, [1652] = {.lex_state = 130, .external_lex_state = 18}, [1653] = {.lex_state = 130, .external_lex_state = 18}, - [1654] = {.lex_state = 281, .external_lex_state = 39}, - [1655] = {.lex_state = 281, .external_lex_state = 39}, - [1656] = {.lex_state = 281, .external_lex_state = 39}, - [1657] = {.lex_state = 281, .external_lex_state = 39}, - [1658] = {.lex_state = 238, .external_lex_state = 40}, - [1659] = {.lex_state = 238, .external_lex_state = 40}, - [1660] = {.lex_state = 281, .external_lex_state = 39}, - [1661] = {.lex_state = 281, .external_lex_state = 39}, + [1654] = {.lex_state = 283, .external_lex_state = 39}, + [1655] = {.lex_state = 283, .external_lex_state = 39}, + [1656] = {.lex_state = 283, .external_lex_state = 39}, + [1657] = {.lex_state = 283, .external_lex_state = 39}, + [1658] = {.lex_state = 240, .external_lex_state = 40}, + [1659] = {.lex_state = 240, .external_lex_state = 40}, + [1660] = {.lex_state = 283, .external_lex_state = 39}, + [1661] = {.lex_state = 283, .external_lex_state = 39}, }; enum { @@ -8318,7 +8352,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [92] = { [anon_sym_DQUOTE] = ACTIONS(450), - [sym__string_content] = ACTIONS(452), + [sym__string_content] = ACTIONS(450), [anon_sym_DOLLAR] = ACTIONS(450), [anon_sym_DOLLAR_LBRACE] = ACTIONS(450), [anon_sym_DOLLAR_LPAREN] = ACTIONS(450), @@ -8327,25 +8361,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [93] = { [sym_special_variable_name] = STATE(282), - [anon_sym_DOLLAR] = ACTIONS(454), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_AT] = ACTIONS(454), + [anon_sym_DOLLAR] = ACTIONS(452), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(452), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_0] = ACTIONS(458), - [anon_sym__] = ACTIONS(458), + [sym_identifier] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_QMARK] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_0] = ACTIONS(456), + [anon_sym__] = ACTIONS(456), }, [94] = { [sym_special_variable_name] = STATE(285), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(462), + [sym_identifier] = ACTIONS(460), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -8472,7 +8506,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(464), + [anon_sym_DQUOTE] = ACTIONS(462), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -8481,130 +8515,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [98] = { - [sym_file_descriptor] = ACTIONS(466), - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(468), - [anon_sym_PIPE_AMP] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_AMP_GT] = ACTIONS(468), - [anon_sym_AMP_GT_GT] = ACTIONS(468), - [anon_sym_LT_AMP] = ACTIONS(468), - [anon_sym_GT_AMP] = ACTIONS(468), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT_LT_DASH] = ACTIONS(468), - [anon_sym_DQUOTE] = ACTIONS(468), - [sym_raw_string] = ACTIONS(468), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), - [anon_sym_BQUOTE] = ACTIONS(468), - [anon_sym_LT_LPAREN] = ACTIONS(468), - [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_file_descriptor] = ACTIONS(464), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_AMP_GT] = ACTIONS(466), + [anon_sym_AMP_GT_GT] = ACTIONS(466), + [anon_sym_LT_AMP] = ACTIONS(466), + [anon_sym_GT_AMP] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(466), + [anon_sym_LT_LT_DASH] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_raw_string] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_LT_LPAREN] = ACTIONS(466), + [anon_sym_GT_LPAREN] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [sym_identifier] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [99] = { - [sym_file_descriptor] = ACTIONS(470), - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [anon_sym_PIPE_AMP] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_AMP_GT] = ACTIONS(472), - [anon_sym_AMP_GT_GT] = ACTIONS(472), - [anon_sym_LT_AMP] = ACTIONS(472), - [anon_sym_GT_AMP] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_LT_LT_DASH] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(472), - [anon_sym_LT_LPAREN] = ACTIONS(472), - [anon_sym_GT_LPAREN] = ACTIONS(472), + [sym_file_descriptor] = ACTIONS(468), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_PIPE_AMP] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(470), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_LT_LT_DASH] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_raw_string] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_LT_LPAREN] = ACTIONS(470), + [anon_sym_GT_LPAREN] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [sym_identifier] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [100] = { - [sym_file_descriptor] = ACTIONS(474), - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_SEMI_SEMI] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_AMP_GT] = ACTIONS(476), - [anon_sym_AMP_GT_GT] = ACTIONS(476), - [anon_sym_LT_AMP] = ACTIONS(476), - [anon_sym_GT_AMP] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_LT_LT_DASH] = ACTIONS(476), - [anon_sym_DQUOTE] = ACTIONS(476), - [sym_raw_string] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(476), - [anon_sym_BQUOTE] = ACTIONS(476), - [anon_sym_LT_LPAREN] = ACTIONS(476), - [anon_sym_GT_LPAREN] = ACTIONS(476), + [sym_file_descriptor] = ACTIONS(472), + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_PIPE_AMP] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_LT_LT_DASH] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(474), + [sym_raw_string] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), + [anon_sym_LT_LPAREN] = ACTIONS(474), + [anon_sym_GT_LPAREN] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [sym_identifier] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [101] = { - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(50), }, [102] = { [sym_special_variable_name] = STATE(293), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(480), + [sym_identifier] = ACTIONS(478), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -8613,67 +8647,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [103] = { - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_COLON_QMARK] = ACTIONS(486), - [anon_sym_COLON_DASH] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(486), + [anon_sym_COLON_QMARK] = ACTIONS(484), + [anon_sym_COLON_DASH] = ACTIONS(484), + [anon_sym_PERCENT] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(484), [sym_comment] = ACTIONS(50), }, [104] = { - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_COLON] = ACTIONS(496), - [anon_sym_COLON_QMARK] = ACTIONS(494), - [anon_sym_COLON_DASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(494), + [anon_sym_COLON_QMARK] = ACTIONS(492), + [anon_sym_COLON_DASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), [sym_comment] = ACTIONS(50), }, [105] = { [aux_sym_concatenation_repeat1] = STATE(301), [sym_file_descriptor] = ACTIONS(58), [sym_word] = ACTIONS(58), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), [anon_sym_RPAREN] = ACTIONS(58), [anon_sym_PIPE_AMP] = ACTIONS(58), [anon_sym_AMP_AMP] = ACTIONS(58), [anon_sym_PIPE_PIPE] = ACTIONS(58), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), [anon_sym_GT_GT] = ACTIONS(58), - [anon_sym_AMP_GT] = ACTIONS(500), + [anon_sym_AMP_GT] = ACTIONS(498), [anon_sym_AMP_GT_GT] = ACTIONS(58), [anon_sym_LT_AMP] = ACTIONS(58), [anon_sym_GT_AMP] = ACTIONS(58), - [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(58), [anon_sym_DQUOTE] = ACTIONS(58), [sym_raw_string] = ACTIONS(58), - [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), [anon_sym_BQUOTE] = ACTIONS(58), [anon_sym_LT_LPAREN] = ACTIONS(58), [anon_sym_GT_LPAREN] = ACTIONS(58), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(500), + [sym_identifier] = ACTIONS(498), }, [106] = { [sym__assignment] = STATE(303), [anon_sym_LBRACK] = ACTIONS(66), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(500), [sym_comment] = ACTIONS(50), }, [107] = { [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(504), + [sym_identifier] = ACTIONS(502), }, [108] = { [sym__terminated_statement] = STATE(305), @@ -8798,9 +8832,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(307), [sym_command_substitution] = STATE(307), [sym_process_substitution] = STATE(307), - [sym_word] = ACTIONS(506), + [sym_word] = ACTIONS(504), [anon_sym_DQUOTE] = ACTIONS(74), - [sym_raw_string] = ACTIONS(506), + [sym_raw_string] = ACTIONS(504), [anon_sym_DOLLAR] = ACTIONS(76), [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), @@ -8808,11 +8842,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(84), [anon_sym_GT_LPAREN] = ACTIONS(84), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(508), + [sym_identifier] = ACTIONS(506), }, [111] = { [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(510), + [sym_identifier] = ACTIONS(508), }, [112] = { [sym__terminated_statement] = STATE(23), @@ -8917,22 +8951,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(316), [sym_subscript] = STATE(319), [aux_sym_declaration_command_repeat1] = STATE(320), - [sym_word] = ACTIONS(512), - [sym_variable_name] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_RPAREN] = ACTIONS(518), - [anon_sym_PIPE_AMP] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), + [sym_word] = ACTIONS(510), + [sym_variable_name] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(520), + [sym_identifier] = ACTIONS(518), }, [116] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(322), - [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(520), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -8942,25 +8976,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [117] = { [sym_special_variable_name] = STATE(325), - [anon_sym_DOLLAR] = ACTIONS(524), - [anon_sym_POUND] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(522), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_0] = ACTIONS(528), - [anon_sym__] = ACTIONS(528), + [sym_identifier] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_0] = ACTIONS(526), + [anon_sym__] = ACTIONS(526), }, [118] = { [sym_special_variable_name] = STATE(328), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(528), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(532), + [sym_identifier] = ACTIONS(530), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -9143,39 +9177,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_concatenation_repeat1] = STATE(336), [sym_file_descriptor] = ACTIONS(216), [sym_word] = ACTIONS(216), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(534), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(532), [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), [anon_sym_PIPE_AMP] = ACTIONS(216), [anon_sym_AMP_AMP] = ACTIONS(216), [anon_sym_PIPE_PIPE] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), [anon_sym_GT_GT] = ACTIONS(216), - [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT] = ACTIONS(532), [anon_sym_AMP_GT_GT] = ACTIONS(216), [anon_sym_LT_AMP] = ACTIONS(216), [anon_sym_GT_AMP] = ACTIONS(216), - [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(532), [anon_sym_LT_LT_DASH] = ACTIONS(216), [anon_sym_DQUOTE] = ACTIONS(216), [sym_raw_string] = ACTIONS(216), - [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR] = ACTIONS(532), [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), [anon_sym_BQUOTE] = ACTIONS(216), [anon_sym_LT_LPAREN] = ACTIONS(216), [anon_sym_GT_LPAREN] = ACTIONS(216), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(534), + [sym_identifier] = ACTIONS(532), }, [123] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(538), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [124] = { @@ -9189,24 +9223,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(341), [aux_sym_for_statement_repeat1] = STATE(347), [aux_sym_command_repeat2] = STATE(348), - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_PIPE_AMP] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(552), - [anon_sym_PIPE_PIPE] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [sym_word] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(548), + [sym_raw_string] = ACTIONS(546), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), @@ -9214,17 +9248,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), }, [125] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(538), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -9245,37 +9279,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [126] = { [sym__assignment] = STATE(303), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(500), [sym_comment] = ACTIONS(50), }, [127] = { [sym_file_descriptor] = ACTIONS(58), [sym_word] = ACTIONS(58), - [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(498), [anon_sym_RPAREN] = ACTIONS(58), [anon_sym_PIPE_AMP] = ACTIONS(58), [anon_sym_AMP_AMP] = ACTIONS(58), [anon_sym_PIPE_PIPE] = ACTIONS(58), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), [anon_sym_GT_GT] = ACTIONS(58), - [anon_sym_AMP_GT] = ACTIONS(500), + [anon_sym_AMP_GT] = ACTIONS(498), [anon_sym_AMP_GT_GT] = ACTIONS(58), [anon_sym_LT_AMP] = ACTIONS(58), [anon_sym_GT_AMP] = ACTIONS(58), - [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(58), [anon_sym_DQUOTE] = ACTIONS(58), [sym_raw_string] = ACTIONS(58), - [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), [anon_sym_BQUOTE] = ACTIONS(58), [anon_sym_LT_LPAREN] = ACTIONS(58), [anon_sym_GT_LPAREN] = ACTIONS(58), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(500), + [sym_identifier] = ACTIONS(498), }, [128] = { [sym_command_name] = STATE(350), @@ -9308,98 +9342,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(564), + [sym_identifier] = ACTIONS(562), }, [129] = { [aux_sym_concatenation_repeat1] = STATE(351), [sym_file_descriptor] = ACTIONS(58), [sym_word] = ACTIONS(58), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), [anon_sym_PIPE_AMP] = ACTIONS(58), [anon_sym_AMP_AMP] = ACTIONS(58), [anon_sym_PIPE_PIPE] = ACTIONS(58), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), [anon_sym_GT_GT] = ACTIONS(58), - [anon_sym_AMP_GT] = ACTIONS(500), + [anon_sym_AMP_GT] = ACTIONS(498), [anon_sym_AMP_GT_GT] = ACTIONS(58), [anon_sym_LT_AMP] = ACTIONS(58), [anon_sym_GT_AMP] = ACTIONS(58), - [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(498), [anon_sym_LT_LT_DASH] = ACTIONS(58), [anon_sym_DQUOTE] = ACTIONS(58), [sym_raw_string] = ACTIONS(58), - [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), [anon_sym_BQUOTE] = ACTIONS(58), [anon_sym_LT_LPAREN] = ACTIONS(58), [anon_sym_GT_LPAREN] = ACTIONS(58), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(500), + [sym_identifier] = ACTIONS(498), }, [130] = { [sym__assignment] = STATE(303), [anon_sym_LBRACK] = ACTIONS(66), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(564), [sym_comment] = ACTIONS(50), }, [131] = { [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(568), + [sym_identifier] = ACTIONS(566), }, [132] = { [sym_variable_assignment] = STATE(316), [sym_subscript] = STATE(355), [aux_sym_declaration_command_repeat1] = STATE(356), - [sym_word] = ACTIONS(512), - [sym_variable_name] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_PIPE_AMP] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_BQUOTE] = ACTIONS(518), + [sym_word] = ACTIONS(510), + [sym_variable_name] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(520), + [sym_identifier] = ACTIONS(518), }, [133] = { [aux_sym_concatenation_repeat1] = STATE(358), [sym_file_descriptor] = ACTIONS(216), [sym_word] = ACTIONS(216), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(572), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(570), [anon_sym_PIPE_AMP] = ACTIONS(216), [anon_sym_AMP_AMP] = ACTIONS(216), [anon_sym_PIPE_PIPE] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), [anon_sym_GT_GT] = ACTIONS(216), - [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT] = ACTIONS(532), [anon_sym_AMP_GT_GT] = ACTIONS(216), [anon_sym_LT_AMP] = ACTIONS(216), [anon_sym_GT_AMP] = ACTIONS(216), - [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(532), [anon_sym_LT_LT_DASH] = ACTIONS(216), [anon_sym_DQUOTE] = ACTIONS(216), [sym_raw_string] = ACTIONS(216), - [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR] = ACTIONS(532), [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), [anon_sym_BQUOTE] = ACTIONS(216), [anon_sym_LT_LPAREN] = ACTIONS(216), [anon_sym_GT_LPAREN] = ACTIONS(216), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(534), + [sym_identifier] = ACTIONS(532), }, [134] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(540), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(538), [sym_comment] = ACTIONS(50), }, [135] = { @@ -9413,40 +9447,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(362), [aux_sym_for_statement_repeat1] = STATE(365), [aux_sym_command_repeat2] = STATE(366), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_PIPE_AMP] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(552), - [anon_sym_PIPE_PIPE] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(578), + [sym_word] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(582), + [sym_raw_string] = ACTIONS(580), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(552), + [anon_sym_BQUOTE] = ACTIONS(550), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(588), + [sym_identifier] = ACTIONS(586), }, [136] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -9459,7 +9493,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(540), + [anon_sym_BQUOTE] = ACTIONS(538), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), @@ -9467,8 +9501,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [137] = { [sym__assignment] = STATE(303), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(564), [sym_comment] = ACTIONS(50), }, [138] = { @@ -9502,25 +9536,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(590), + [sym_identifier] = ACTIONS(588), }, [139] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(590), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [140] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(590), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -9540,41 +9574,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [141] = { - [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(592), [sym_comment] = ACTIONS(50), }, [142] = { [aux_sym_concatenation_repeat1] = STATE(166), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_AMP_GT] = ACTIONS(598), - [anon_sym_AMP_GT_GT] = ACTIONS(598), - [anon_sym_LT_AMP] = ACTIONS(598), - [anon_sym_GT_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_LT_LT_DASH] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(598), - [sym_raw_string] = ACTIONS(598), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), - [anon_sym_BQUOTE] = ACTIONS(598), - [anon_sym_LT_LPAREN] = ACTIONS(598), - [anon_sym_GT_LPAREN] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(596), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_LT_LT_DASH] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [143] = { [sym_for_statement] = STATE(371), @@ -9634,42 +9668,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [144] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [ts_builtin_sym_end] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_SEMI_SEMI] = ACTIONS(600), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [ts_builtin_sym_end] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [145] = { [sym_for_statement] = STATE(373), @@ -9729,13 +9763,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [146] = { - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_AMP_GT] = ACTIONS(606), - [anon_sym_AMP_GT_GT] = ACTIONS(608), - [anon_sym_LT_AMP] = ACTIONS(608), - [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_AMP_GT] = ACTIONS(604), + [anon_sym_AMP_GT_GT] = ACTIONS(606), + [anon_sym_LT_AMP] = ACTIONS(606), + [anon_sym_GT_AMP] = ACTIONS(606), [sym_comment] = ACTIONS(50), }, [147] = { @@ -9743,33 +9777,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(388), [sym_word] = ACTIONS(388), [sym__concat] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_PIPE_AMP] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_AMP_GT] = ACTIONS(610), - [anon_sym_AMP_GT_GT] = ACTIONS(610), - [anon_sym_LT_AMP] = ACTIONS(610), - [anon_sym_GT_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_LT_LT_DASH] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [148] = { [sym_concatenation] = STATE(384), @@ -9778,22 +9812,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(376), [sym_command_substitution] = STATE(376), [sym_process_substitution] = STATE(376), - [sym_word] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(614), - [sym_raw_string] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_word] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(612), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(626), + [sym_identifier] = ACTIONS(624), }, [149] = { [sym_heredoc] = STATE(387), - [sym__simple_heredoc] = ACTIONS(628), - [sym__heredoc_beginning] = ACTIONS(630), + [sym__simple_heredoc] = ACTIONS(626), + [sym__heredoc_beginning] = ACTIONS(628), [sym_comment] = ACTIONS(50), }, [150] = { @@ -9801,87 +9835,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(406), [sym_word] = ACTIONS(406), [sym__concat] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(632), - [anon_sym_SEMI_SEMI] = ACTIONS(632), - [anon_sym_PIPE_AMP] = ACTIONS(632), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_GT] = ACTIONS(632), - [anon_sym_GT_GT] = ACTIONS(632), - [anon_sym_AMP_GT] = ACTIONS(632), - [anon_sym_AMP_GT_GT] = ACTIONS(632), - [anon_sym_LT_AMP] = ACTIONS(632), - [anon_sym_GT_AMP] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(632), - [anon_sym_LT_LT_DASH] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(632), - [sym_raw_string] = ACTIONS(632), - [anon_sym_DOLLAR] = ACTIONS(632), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(632), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(632), - [anon_sym_GT_LPAREN] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_SEMI_SEMI] = ACTIONS(630), + [anon_sym_PIPE_AMP] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(630), + [anon_sym_PIPE_PIPE] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_AMP_GT] = ACTIONS(630), + [anon_sym_AMP_GT_GT] = ACTIONS(630), + [anon_sym_LT_AMP] = ACTIONS(630), + [anon_sym_GT_AMP] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_LT_LT_DASH] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(630), + [sym_raw_string] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LT_LPAREN] = ACTIONS(630), + [anon_sym_GT_LPAREN] = ACTIONS(630), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_LF] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(632), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LF] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), }, [151] = { - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_RPAREN] = ACTIONS(636), - [anon_sym_SEMI_SEMI] = ACTIONS(636), - [anon_sym_PIPE_AMP] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_AMP_GT] = ACTIONS(636), - [anon_sym_AMP_GT_GT] = ACTIONS(636), - [anon_sym_LT_AMP] = ACTIONS(636), - [anon_sym_GT_AMP] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(636), - [anon_sym_LT_LT_DASH] = ACTIONS(636), + [sym_file_descriptor] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_SEMI_SEMI] = ACTIONS(634), + [anon_sym_PIPE_AMP] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PIPE_PIPE] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_AMP_GT] = ACTIONS(634), + [anon_sym_AMP_GT_GT] = ACTIONS(634), + [anon_sym_LT_AMP] = ACTIONS(634), + [anon_sym_GT_AMP] = ACTIONS(634), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_LT_LT_DASH] = ACTIONS(634), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LF] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_LF] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), }, [152] = { [sym_file_descriptor] = ACTIONS(388), [sym_word] = ACTIONS(388), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_PIPE_AMP] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_AMP_GT] = ACTIONS(610), - [anon_sym_AMP_GT_GT] = ACTIONS(610), - [anon_sym_LT_AMP] = ACTIONS(610), - [anon_sym_GT_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_LT_LT_DASH] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [153] = { [sym_file_redirect] = STATE(151), @@ -9896,11 +9930,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat2] = STATE(389), [sym_file_descriptor] = ACTIONS(236), [sym_word] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(638), - [anon_sym_PIPE_AMP] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(242), @@ -9920,20 +9954,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LF] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [154] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(390), [sym_file_descriptor] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(638), - [anon_sym_PIPE_AMP] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(242), @@ -9944,9 +9978,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(244), [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LF] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [155] = { [sym__terminated_statement] = STATE(23), @@ -9973,46 +10007,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(155), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [ts_builtin_sym_end] = ACTIONS(649), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_if] = ACTIONS(657), - [anon_sym_case] = ACTIONS(660), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [ts_builtin_sym_end] = ACTIONS(647), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_case] = ACTIONS(658), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [156] = { [sym__assignment] = STATE(303), [anon_sym_LBRACK] = ACTIONS(66), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_PLUS_EQ] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_PLUS_EQ] = ACTIONS(703), [sym_comment] = ACTIONS(50), }, [157] = { @@ -10061,11 +10095,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat2] = STATE(389), [sym_file_descriptor] = ACTIONS(236), [sym_word] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(638), - [anon_sym_PIPE_AMP] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(242), @@ -10085,14 +10119,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LF] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [159] = { [sym__assignment] = STATE(303), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_PLUS_EQ] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_PLUS_EQ] = ACTIONS(703), [sym_comment] = ACTIONS(50), }, [160] = { @@ -10100,200 +10134,200 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript] = STATE(159), [sym_file_redirect] = STATE(28), [aux_sym_command_repeat1] = STATE(160), - [sym_file_descriptor] = ACTIONS(707), - [sym_word] = ACTIONS(710), - [sym_variable_name] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(718), - [anon_sym_AMP_GT] = ACTIONS(715), - [anon_sym_AMP_GT_GT] = ACTIONS(718), - [anon_sym_LT_AMP] = ACTIONS(718), - [anon_sym_GT_AMP] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(710), - [sym_raw_string] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(710), - [anon_sym_BQUOTE] = ACTIONS(710), - [anon_sym_LT_LPAREN] = ACTIONS(710), - [anon_sym_GT_LPAREN] = ACTIONS(710), + [sym_file_descriptor] = ACTIONS(705), + [sym_word] = ACTIONS(708), + [sym_variable_name] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(713), + [anon_sym_AMP_GT_GT] = ACTIONS(716), + [anon_sym_LT_AMP] = ACTIONS(716), + [anon_sym_GT_AMP] = ACTIONS(716), + [anon_sym_DQUOTE] = ACTIONS(708), + [sym_raw_string] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(708), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(708), + [anon_sym_BQUOTE] = ACTIONS(708), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_GT_LPAREN] = ACTIONS(708), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(721), + [sym_identifier] = ACTIONS(719), }, [161] = { [aux_sym_concatenation_repeat1] = STATE(264), - [sym_file_descriptor] = ACTIONS(723), - [sym_word] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(721), + [sym_word] = ACTIONS(721), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_AMP_GT_GT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(723), - [anon_sym_GT_AMP] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym_raw_string] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(723), - [anon_sym_GT_LPAREN] = ACTIONS(723), + [sym_variable_name] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(725), + [sym_identifier] = ACTIONS(723), }, [162] = { [aux_sym_concatenation_repeat1] = STATE(279), - [sym_file_descriptor] = ACTIONS(727), - [sym_word] = ACTIONS(727), + [sym_file_descriptor] = ACTIONS(725), + [sym_word] = ACTIONS(725), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(727), - [anon_sym_LT_AMP] = ACTIONS(727), - [anon_sym_GT_AMP] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(727), - [sym_raw_string] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(727), - [anon_sym_GT_LPAREN] = ACTIONS(727), + [sym_variable_name] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(729), + [sym_identifier] = ACTIONS(727), }, [163] = { - [sym_file_descriptor] = ACTIONS(723), - [sym_word] = ACTIONS(723), - [sym_variable_name] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_AMP_GT_GT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(723), - [anon_sym_GT_AMP] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(723), - [sym_raw_string] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(723), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(723), - [anon_sym_GT_LPAREN] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(721), + [sym_word] = ACTIONS(721), + [sym_variable_name] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [sym_raw_string] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LT_LPAREN] = ACTIONS(721), + [anon_sym_GT_LPAREN] = ACTIONS(721), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(725), + [sym_identifier] = ACTIONS(723), }, [164] = { - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [165] = { - [sym_file_descriptor] = ACTIONS(735), - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_file_descriptor] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(735), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(735), + [anon_sym_LT_LT_DASH] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [sym_identifier] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [166] = { [aux_sym_concatenation_repeat1] = STATE(166), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [167] = { [aux_sym_concatenation_repeat1] = STATE(395), - [sym__concat] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(744), + [sym__concat] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(742), [sym_comment] = ACTIONS(50), }, [168] = { @@ -10301,7 +10335,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(397), - [anon_sym_DQUOTE] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(744), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -10311,25 +10345,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [169] = { [sym_special_variable_name] = STATE(400), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(746), + [anon_sym_POUND] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(746), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_QMARK] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_0] = ACTIONS(752), - [anon_sym__] = ACTIONS(752), + [sym_identifier] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(746), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_0] = ACTIONS(750), + [anon_sym__] = ACTIONS(750), }, [170] = { [sym_special_variable_name] = STATE(403), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(752), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(756), + [sym_identifier] = ACTIONS(754), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -10510,76 +10544,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [174] = { [aux_sym_concatenation_repeat1] = STATE(411), - [sym__concat] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(758), + [sym__concat] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(756), [sym_comment] = ACTIONS(50), }, [175] = { - [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_RBRACK] = ACTIONS(742), [sym_comment] = ACTIONS(50), }, [176] = { [aux_sym_concatenation_repeat1] = STATE(413), - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), - [sym__concat] = ACTIONS(762), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(764), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), + [sym__concat] = ACTIONS(760), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_PIPE_AMP] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_AMP_GT] = ACTIONS(762), + [anon_sym_AMP_GT_GT] = ACTIONS(762), + [anon_sym_LT_AMP] = ACTIONS(762), + [anon_sym_GT_AMP] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(762), + [sym_raw_string] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), + [anon_sym_BQUOTE] = ACTIONS(762), + [anon_sym_LT_LPAREN] = ACTIONS(762), + [anon_sym_GT_LPAREN] = ACTIONS(762), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), }, [177] = { - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(764), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_PIPE_AMP] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_AMP_GT] = ACTIONS(762), + [anon_sym_AMP_GT_GT] = ACTIONS(762), + [anon_sym_LT_AMP] = ACTIONS(762), + [anon_sym_GT_AMP] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(762), + [sym_raw_string] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), + [anon_sym_BQUOTE] = ACTIONS(762), + [anon_sym_LT_LPAREN] = ACTIONS(762), + [anon_sym_GT_LPAREN] = ACTIONS(762), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), }, [178] = { [sym_concatenation] = STATE(72), @@ -10589,10 +10623,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(417), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(768), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -10600,14 +10634,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [179] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(419), - [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(770), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -10617,25 +10651,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [180] = { [sym_special_variable_name] = STATE(422), - [anon_sym_DOLLAR] = ACTIONS(774), - [anon_sym_POUND] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(776), - [anon_sym_STAR] = ACTIONS(774), - [anon_sym_QMARK] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_BANG] = ACTIONS(774), - [anon_sym_0] = ACTIONS(778), - [anon_sym__] = ACTIONS(778), + [sym_identifier] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(772), + [anon_sym_0] = ACTIONS(776), + [anon_sym__] = ACTIONS(776), }, [181] = { [sym_special_variable_name] = STATE(425), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(778), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(782), + [sym_identifier] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -10816,35 +10850,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [185] = { [aux_sym_concatenation_repeat1] = STATE(432), - [sym_file_descriptor] = ACTIONS(784), - [sym_word] = ACTIONS(784), - [sym__concat] = ACTIONS(762), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(786), - [anon_sym_SEMI_SEMI] = ACTIONS(786), - [anon_sym_PIPE_AMP] = ACTIONS(786), - [anon_sym_AMP_AMP] = ACTIONS(786), - [anon_sym_PIPE_PIPE] = ACTIONS(786), - [anon_sym_LT] = ACTIONS(786), - [anon_sym_GT] = ACTIONS(786), - [anon_sym_GT_GT] = ACTIONS(786), - [anon_sym_AMP_GT] = ACTIONS(786), - [anon_sym_AMP_GT_GT] = ACTIONS(786), - [anon_sym_LT_AMP] = ACTIONS(786), - [anon_sym_GT_AMP] = ACTIONS(786), - [anon_sym_DQUOTE] = ACTIONS(786), - [sym_raw_string] = ACTIONS(786), - [anon_sym_DOLLAR] = ACTIONS(786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), - [anon_sym_BQUOTE] = ACTIONS(786), - [anon_sym_LT_LPAREN] = ACTIONS(786), - [anon_sym_GT_LPAREN] = ACTIONS(786), + [sym_file_descriptor] = ACTIONS(782), + [sym_word] = ACTIONS(782), + [sym__concat] = ACTIONS(760), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_SEMI_SEMI] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_AMP_GT] = ACTIONS(784), + [anon_sym_AMP_GT_GT] = ACTIONS(784), + [anon_sym_LT_AMP] = ACTIONS(784), + [anon_sym_GT_AMP] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_raw_string] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [anon_sym_GT_LPAREN] = ACTIONS(784), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_LF] = ACTIONS(786), - [anon_sym_AMP] = ACTIONS(786), + [sym_identifier] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), }, [186] = { [sym_concatenation] = STATE(441), @@ -10854,17 +10888,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(433), [sym_process_substitution] = STATE(433), [aux_sym_for_statement_repeat1] = STATE(442), - [sym_word] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [sym_word] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym_raw_string] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(798), + [anon_sym_GT_LPAREN] = ACTIONS(798), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(802), + [sym_identifier] = ACTIONS(800), }, [187] = { [sym__terminated_statement] = STATE(444), @@ -10896,7 +10930,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(804), + [anon_sym_done] = ACTIONS(802), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -10927,20 +10961,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [188] = { - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_SEMI_SEMI] = ACTIONS(804), + [anon_sym_PIPE_AMP] = ACTIONS(804), + [anon_sym_AMP_AMP] = ACTIONS(804), + [anon_sym_PIPE_PIPE] = ACTIONS(804), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_LF] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), }, [189] = { - [anon_sym_do] = ACTIONS(600), - [anon_sym_then] = ACTIONS(600), + [anon_sym_do] = ACTIONS(598), + [anon_sym_then] = ACTIONS(598), [sym_comment] = ACTIONS(50), }, [190] = { @@ -10977,9 +11011,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(808), - [anon_sym_elif] = ACTIONS(810), - [anon_sym_else] = ACTIONS(812), + [anon_sym_fi] = ACTIONS(806), + [anon_sym_elif] = ACTIONS(808), + [anon_sym_else] = ACTIONS(810), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -11014,9 +11048,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(458), [sym_command_substitution] = STATE(458), [sym_process_substitution] = STATE(458), - [sym_word] = ACTIONS(814), + [sym_word] = ACTIONS(812), [anon_sym_DQUOTE] = ACTIONS(74), - [sym_raw_string] = ACTIONS(814), + [sym_raw_string] = ACTIONS(812), [anon_sym_DOLLAR] = ACTIONS(76), [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), @@ -11024,17 +11058,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(84), [anon_sym_GT_LPAREN] = ACTIONS(84), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(816), + [sym_identifier] = ACTIONS(814), }, [192] = { - [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(816), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LF] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_LF] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(816), }, [193] = { - [anon_sym_in] = ACTIONS(820), + [anon_sym_in] = ACTIONS(818), [sym_comment] = ACTIONS(50), }, [194] = { @@ -11061,7 +11095,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(820), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -11070,47 +11104,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [197] = { - [sym__concat] = ACTIONS(466), - [anon_sym_in] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(468), + [sym__concat] = ACTIONS(464), + [anon_sym_in] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [198] = { - [sym__concat] = ACTIONS(470), - [anon_sym_in] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(472), + [sym__concat] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [199] = { - [sym__concat] = ACTIONS(474), - [anon_sym_in] = ACTIONS(476), - [anon_sym_SEMI_SEMI] = ACTIONS(476), + [sym__concat] = ACTIONS(472), + [anon_sym_in] = ACTIONS(474), + [anon_sym_SEMI_SEMI] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [200] = { [sym_special_variable_name] = STATE(465), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(824), + [sym_identifier] = ACTIONS(822), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -11119,44 +11153,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [201] = { - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_EQ] = ACTIONS(830), - [anon_sym_COLON] = ACTIONS(832), - [anon_sym_COLON_QMARK] = ACTIONS(830), - [anon_sym_COLON_DASH] = ACTIONS(830), - [anon_sym_PERCENT] = ACTIONS(830), - [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(828), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_COLON_QMARK] = ACTIONS(828), + [anon_sym_COLON_DASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), [sym_comment] = ACTIONS(50), }, [202] = { - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(838), - [anon_sym_COLON] = ACTIONS(840), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_DASH] = ACTIONS(838), - [anon_sym_PERCENT] = ACTIONS(838), - [anon_sym_SLASH] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_COLON] = ACTIONS(838), + [anon_sym_COLON_QMARK] = ACTIONS(836), + [anon_sym_COLON_DASH] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), [sym_comment] = ACTIONS(50), }, [203] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [204] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(842), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -11176,21 +11210,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [205] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(840), [sym_comment] = ACTIONS(50), }, [206] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -11203,29 +11237,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(840), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [207] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [208] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -11245,28 +11279,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [209] = { - [anon_sym_SEMI_SEMI] = ACTIONS(846), + [anon_sym_SEMI_SEMI] = ACTIONS(844), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_LF] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LF] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(844), }, [210] = { - [anon_sym_in] = ACTIONS(848), + [anon_sym_in] = ACTIONS(846), [sym_comment] = ACTIONS(50), }, [211] = { [aux_sym_concatenation_repeat1] = STATE(462), [sym__concat] = ACTIONS(334), - [anon_sym_in] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), + [anon_sym_in] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [212] = { - [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(848), [sym_comment] = ACTIONS(50), }, [213] = { @@ -11303,7 +11337,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -11331,23 +11365,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [214] = { [sym_file_redirect] = STATE(481), - [sym_file_descriptor] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_LT] = ACTIONS(858), - [anon_sym_GT] = ACTIONS(858), - [anon_sym_GT_GT] = ACTIONS(858), - [anon_sym_AMP_GT] = ACTIONS(858), - [anon_sym_AMP_GT_GT] = ACTIONS(858), - [anon_sym_LT_AMP] = ACTIONS(858), - [anon_sym_GT_AMP] = ACTIONS(858), + [sym_file_descriptor] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_SEMI_SEMI] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(854), }, [215] = { [aux_sym_concatenation_repeat1] = STATE(482), @@ -11391,11 +11425,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(483), [sym_command_substitution] = STATE(483), [sym_process_substitution] = STATE(483), - [sym_word] = ACTIONS(860), + [sym_word] = ACTIONS(858), [sym__empty_value] = ACTIONS(304), [anon_sym_LPAREN] = ACTIONS(306), [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(860), + [sym_raw_string] = ACTIONS(858), [anon_sym_DOLLAR] = ACTIONS(310), [anon_sym_DOLLAR_LBRACE] = ACTIONS(312), [anon_sym_DOLLAR_LPAREN] = ACTIONS(314), @@ -11403,25 +11437,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(318), [anon_sym_GT_LPAREN] = ACTIONS(318), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(862), + [sym_identifier] = ACTIONS(860), }, [217] = { [sym_compound_statement] = STATE(486), - [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(862), [anon_sym_LBRACE] = ACTIONS(358), [sym_comment] = ACTIONS(50), }, [218] = { [sym__assignment] = STATE(261), [anon_sym_LBRACK] = ACTIONS(66), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_PLUS_EQ] = ACTIONS(864), [sym_comment] = ACTIONS(50), }, [219] = { [sym__assignment] = STATE(261), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_PLUS_EQ] = ACTIONS(864), [sym_comment] = ACTIONS(50), }, [220] = { @@ -11443,42 +11477,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(422), }, [221] = { - [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(866), [sym_comment] = ACTIONS(50), }, [222] = { [aux_sym_concatenation_repeat1] = STATE(482), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_AMP_GT] = ACTIONS(598), - [anon_sym_AMP_GT_GT] = ACTIONS(598), - [anon_sym_LT_AMP] = ACTIONS(598), - [anon_sym_GT_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_LT_LT_DASH] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(598), - [sym_raw_string] = ACTIONS(598), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), - [anon_sym_BQUOTE] = ACTIONS(598), - [anon_sym_LT_LPAREN] = ACTIONS(598), - [anon_sym_GT_LPAREN] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(596), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_LT_LT_DASH] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [223] = { [sym_for_statement] = STATE(371), @@ -11538,52 +11572,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(98), }, [224] = { - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_RPAREN] = ACTIONS(870), - [anon_sym_SEMI_SEMI] = ACTIONS(870), - [anon_sym_PIPE_AMP] = ACTIONS(870), - [anon_sym_AMP_AMP] = ACTIONS(870), - [anon_sym_PIPE_PIPE] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_SEMI_SEMI] = ACTIONS(868), + [anon_sym_PIPE_AMP] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_LF] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_LF] = ACTIONS(868), + [anon_sym_AMP] = ACTIONS(868), }, [225] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(872), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(870), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [226] = { [sym_for_statement] = STATE(491), @@ -11643,13 +11677,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(98), }, [227] = { - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_AMP_GT] = ACTIONS(874), - [anon_sym_AMP_GT_GT] = ACTIONS(876), - [anon_sym_LT_AMP] = ACTIONS(876), - [anon_sym_GT_AMP] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(872), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_AMP_GT] = ACTIONS(872), + [anon_sym_AMP_GT_GT] = ACTIONS(874), + [anon_sym_LT_AMP] = ACTIONS(874), + [anon_sym_GT_AMP] = ACTIONS(874), [sym_comment] = ACTIONS(50), }, [228] = { @@ -11657,34 +11691,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(388), [sym_word] = ACTIONS(388), [sym__concat] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_PIPE_AMP] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_AMP_GT] = ACTIONS(610), - [anon_sym_AMP_GT_GT] = ACTIONS(610), - [anon_sym_LT_AMP] = ACTIONS(610), - [anon_sym_GT_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_LT_LT_DASH] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [229] = { [sym_concatenation] = STATE(384), @@ -11693,51 +11727,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(494), [sym_command_substitution] = STATE(494), [sym_process_substitution] = STATE(494), - [sym_word] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(614), - [sym_raw_string] = ACTIONS(878), - [anon_sym_DOLLAR] = ACTIONS(616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_word] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(612), + [sym_raw_string] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(880), + [sym_identifier] = ACTIONS(878), }, [230] = { [aux_sym_concatenation_repeat1] = STATE(222), [sym_file_descriptor] = ACTIONS(406), [sym_word] = ACTIONS(406), [sym__concat] = ACTIONS(60), - [anon_sym_PIPE] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(632), - [anon_sym_SEMI_SEMI] = ACTIONS(632), - [anon_sym_PIPE_AMP] = ACTIONS(632), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_GT] = ACTIONS(632), - [anon_sym_GT_GT] = ACTIONS(632), - [anon_sym_AMP_GT] = ACTIONS(632), - [anon_sym_AMP_GT_GT] = ACTIONS(632), - [anon_sym_LT_AMP] = ACTIONS(632), - [anon_sym_GT_AMP] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(632), - [anon_sym_LT_LT_DASH] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(632), - [sym_raw_string] = ACTIONS(632), - [anon_sym_DOLLAR] = ACTIONS(632), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(632), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(632), - [anon_sym_GT_LPAREN] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_SEMI_SEMI] = ACTIONS(630), + [anon_sym_PIPE_AMP] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(630), + [anon_sym_PIPE_PIPE] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_AMP_GT] = ACTIONS(630), + [anon_sym_AMP_GT_GT] = ACTIONS(630), + [anon_sym_LT_AMP] = ACTIONS(630), + [anon_sym_GT_AMP] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_LT_LT_DASH] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(630), + [sym_raw_string] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LT_LPAREN] = ACTIONS(630), + [anon_sym_GT_LPAREN] = ACTIONS(630), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_LF] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(632), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LF] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), }, [231] = { [sym_file_redirect] = STATE(151), @@ -11752,12 +11786,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat2] = STATE(497), [sym_file_descriptor] = ACTIONS(376), [sym_word] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(638), - [anon_sym_PIPE_AMP] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(380), [anon_sym_GT_GT] = ACTIONS(380), @@ -11777,21 +11811,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LF] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [232] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(498), [sym_file_descriptor] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(638), - [anon_sym_PIPE_AMP] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(380), [anon_sym_GT_GT] = ACTIONS(380), @@ -11802,29 +11836,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(244), [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LF] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [233] = { [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(882), [anon_sym_PIPE_AMP] = ACTIONS(368), [anon_sym_AMP_AMP] = ACTIONS(374), [anon_sym_PIPE_PIPE] = ACTIONS(374), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), }, [234] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_SEMI_SEMI] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_SEMI_SEMI] = ACTIONS(882), [anon_sym_PIPE_AMP] = ACTIONS(368), [anon_sym_AMP_AMP] = ACTIONS(374), [anon_sym_PIPE_PIPE] = ACTIONS(374), @@ -11845,9 +11879,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_LF] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_LF] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), }, [235] = { [sym__terminated_statement] = STATE(23), @@ -11874,39 +11908,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(235), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_if] = ACTIONS(657), - [anon_sym_case] = ACTIONS(660), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_case] = ACTIONS(658), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [236] = { [aux_sym_concatenation_repeat1] = STATE(222), @@ -11955,12 +11989,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat2] = STATE(497), [sym_file_descriptor] = ACTIONS(376), [sym_word] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_SEMI_SEMI] = ACTIONS(638), - [anon_sym_PIPE_AMP] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_PIPE_AMP] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(380), [anon_sym_GT_GT] = ACTIONS(380), @@ -11980,9 +12014,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LF] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LF] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(636), }, [238] = { [sym_string] = STATE(501), @@ -11990,9 +12024,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(501), [sym_command_substitution] = STATE(501), [sym_process_substitution] = STATE(501), - [sym_word] = ACTIONS(886), + [sym_word] = ACTIONS(884), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(886), + [sym_raw_string] = ACTIONS(884), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -12000,7 +12034,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(888), + [sym_identifier] = ACTIONS(886), }, [239] = { [aux_sym_concatenation_repeat1] = STATE(503), @@ -12009,38 +12043,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [240] = { [sym_word] = ACTIONS(446), [sym__concat] = ACTIONS(446), [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(890), [anon_sym_RBRACK_RBRACK] = ACTIONS(446), [anon_sym_DQUOTE] = ACTIONS(446), [sym_raw_string] = ACTIONS(446), - [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_DOLLAR] = ACTIONS(890), [anon_sym_DOLLAR_LBRACE] = ACTIONS(446), [anon_sym_DOLLAR_LPAREN] = ACTIONS(446), [anon_sym_BQUOTE] = ACTIONS(446), [anon_sym_LT_LPAREN] = ACTIONS(446), [anon_sym_GT_LPAREN] = ACTIONS(446), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), }, [241] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(892), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -12049,71 +12083,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [242] = { - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_RBRACK_RBRACK] = ACTIONS(466), - [anon_sym_DQUOTE] = ACTIONS(466), - [sym_raw_string] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_LT_LPAREN] = ACTIONS(466), - [anon_sym_GT_LPAREN] = ACTIONS(466), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(476), + [anon_sym_RBRACK_RBRACK] = ACTIONS(464), + [anon_sym_DQUOTE] = ACTIONS(464), + [sym_raw_string] = ACTIONS(464), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(464), + [anon_sym_BQUOTE] = ACTIONS(464), + [anon_sym_LT_LPAREN] = ACTIONS(464), + [anon_sym_GT_LPAREN] = ACTIONS(464), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), }, [243] = { - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_RBRACK] = ACTIONS(894), + [anon_sym_RBRACK_RBRACK] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_raw_string] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_LT_LPAREN] = ACTIONS(468), + [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(894), + }, + [244] = { + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), [anon_sym_RBRACK] = ACTIONS(896), - [anon_sym_RBRACK_RBRACK] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_raw_string] = ACTIONS(470), + [anon_sym_RBRACK_RBRACK] = ACTIONS(472), + [anon_sym_DQUOTE] = ACTIONS(472), + [sym_raw_string] = ACTIONS(472), [anon_sym_DOLLAR] = ACTIONS(896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), - [anon_sym_LT_LPAREN] = ACTIONS(470), - [anon_sym_GT_LPAREN] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LT_LPAREN] = ACTIONS(472), + [anon_sym_GT_LPAREN] = ACTIONS(472), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(896), }, - [244] = { - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_RBRACK] = ACTIONS(898), - [anon_sym_RBRACK_RBRACK] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [anon_sym_LT_LPAREN] = ACTIONS(474), - [anon_sym_GT_LPAREN] = ACTIONS(474), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(898), - }, [245] = { [sym_special_variable_name] = STATE(506), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(900), + [sym_identifier] = ACTIONS(898), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -12122,44 +12156,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [246] = { - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(908), - [anon_sym_COLON_QMARK] = ACTIONS(906), - [anon_sym_COLON_DASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_EQ] = ACTIONS(904), + [anon_sym_COLON] = ACTIONS(906), + [anon_sym_COLON_QMARK] = ACTIONS(904), + [anon_sym_COLON_DASH] = ACTIONS(904), + [anon_sym_PERCENT] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), [sym_comment] = ACTIONS(50), }, [247] = { - [anon_sym_RBRACE] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_EQ] = ACTIONS(914), - [anon_sym_COLON] = ACTIONS(916), - [anon_sym_COLON_QMARK] = ACTIONS(914), - [anon_sym_COLON_DASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(912), + [anon_sym_COLON] = ACTIONS(914), + [anon_sym_COLON_QMARK] = ACTIONS(912), + [anon_sym_COLON_DASH] = ACTIONS(912), + [anon_sym_PERCENT] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), [sym_comment] = ACTIONS(50), }, [248] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(916), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [249] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(916), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12179,21 +12213,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [250] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(916), [sym_comment] = ACTIONS(50), }, [251] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12206,29 +12240,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(916), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [252] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [253] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12249,31 +12283,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [254] = { [aux_sym_concatenation_repeat1] = STATE(503), - [sym_word] = ACTIONS(596), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(390), - [anon_sym_RBRACK] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [anon_sym_RBRACK] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [255] = { - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_SEMI_SEMI] = ACTIONS(924), - [anon_sym_PIPE_AMP] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_SEMI_SEMI] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(922), + [anon_sym_PIPE_PIPE] = ACTIONS(922), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_LF] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_LF] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), }, [256] = { [sym_concatenation] = STATE(72), @@ -12283,18 +12317,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(64), [sym_process_substitution] = STATE(64), [aux_sym_for_statement_repeat1] = STATE(256), - [sym_word] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(940), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(924), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym_raw_string] = ACTIONS(924), + [anon_sym_DOLLAR] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(938), + [anon_sym_BQUOTE] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(949), + [sym_identifier] = ACTIONS(947), }, [257] = { [aux_sym_concatenation_repeat1] = STATE(515), @@ -12303,30 +12337,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK_RBRACK] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [258] = { [aux_sym_concatenation_repeat1] = STATE(515), - [sym_word] = ACTIONS(596), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(390), - [anon_sym_RBRACK_RBRACK] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [anon_sym_RBRACK_RBRACK] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [259] = { [sym_concatenation] = STATE(72), @@ -12336,18 +12370,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(74), [sym_process_substitution] = STATE(74), [aux_sym_for_statement_repeat1] = STATE(259), - [sym_word] = ACTIONS(952), - [anon_sym_RBRACK_RBRACK] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(940), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(950), + [anon_sym_RBRACK_RBRACK] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym_raw_string] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(938), + [anon_sym_BQUOTE] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(955), + [sym_identifier] = ACTIONS(953), }, [260] = { [sym_concatenation] = STATE(517), @@ -12357,19 +12391,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(516), [sym_command_substitution] = STATE(516), [sym_process_substitution] = STATE(516), - [sym_word] = ACTIONS(958), - [sym__empty_value] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_raw_string] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(974), - [anon_sym_GT_LPAREN] = ACTIONS(974), + [sym_word] = ACTIONS(956), + [sym__empty_value] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(968), + [anon_sym_BQUOTE] = ACTIONS(970), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(976), + [sym_identifier] = ACTIONS(974), }, [261] = { [sym_word] = ACTIONS(322), @@ -12390,18 +12424,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_assignment] = STATE(77), [sym_subscript] = STATE(80), [aux_sym_declaration_command_repeat1] = STATE(262), - [sym_word] = ACTIONS(978), - [sym_variable_name] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_SEMI_SEMI] = ACTIONS(984), - [anon_sym_PIPE_AMP] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(984), + [sym_word] = ACTIONS(976), + [sym_variable_name] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_SEMI_SEMI] = ACTIONS(982), + [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), }, [263] = { [sym_string] = STATE(526), @@ -12409,9 +12443,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(526), [sym_command_substitution] = STATE(526), [sym_process_substitution] = STATE(526), - [sym_word] = ACTIONS(989), + [sym_word] = ACTIONS(987), [anon_sym_DQUOTE] = ACTIONS(130), - [sym_raw_string] = ACTIONS(989), + [sym_raw_string] = ACTIONS(987), [anon_sym_DOLLAR] = ACTIONS(132), [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), @@ -12419,7 +12453,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(140), [anon_sym_GT_LPAREN] = ACTIONS(140), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(991), + [sym_identifier] = ACTIONS(989), }, [264] = { [aux_sym_concatenation_repeat1] = STATE(528), @@ -12427,58 +12461,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(282), [sym__concat] = ACTIONS(426), [sym_variable_name] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [265] = { [sym_file_descriptor] = ACTIONS(446), [sym_word] = ACTIONS(446), [sym__concat] = ACTIONS(446), [sym_variable_name] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(890), [anon_sym_RPAREN] = ACTIONS(446), [anon_sym_PIPE_AMP] = ACTIONS(446), [anon_sym_AMP_AMP] = ACTIONS(446), [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_AMP_GT] = ACTIONS(892), + [anon_sym_AMP_GT] = ACTIONS(890), [anon_sym_AMP_GT_GT] = ACTIONS(446), [anon_sym_LT_AMP] = ACTIONS(446), [anon_sym_GT_AMP] = ACTIONS(446), [anon_sym_DQUOTE] = ACTIONS(446), [sym_raw_string] = ACTIONS(446), - [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_DOLLAR] = ACTIONS(890), [anon_sym_DOLLAR_LBRACE] = ACTIONS(446), [anon_sym_DOLLAR_LPAREN] = ACTIONS(446), [anon_sym_BQUOTE] = ACTIONS(446), [anon_sym_LT_LPAREN] = ACTIONS(446), [anon_sym_GT_LPAREN] = ACTIONS(446), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), }, [266] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(993), + [anon_sym_DQUOTE] = ACTIONS(991), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -12487,104 +12521,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [267] = { - [sym_file_descriptor] = ACTIONS(466), - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [sym_variable_name] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_PIPE_AMP] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(466), - [anon_sym_AMP_GT] = ACTIONS(478), - [anon_sym_AMP_GT_GT] = ACTIONS(466), - [anon_sym_LT_AMP] = ACTIONS(466), - [anon_sym_GT_AMP] = ACTIONS(466), - [anon_sym_DQUOTE] = ACTIONS(466), - [sym_raw_string] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_LT_LPAREN] = ACTIONS(466), - [anon_sym_GT_LPAREN] = ACTIONS(466), + [sym_file_descriptor] = ACTIONS(464), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [sym_variable_name] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(464), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_AMP_GT] = ACTIONS(476), + [anon_sym_AMP_GT_GT] = ACTIONS(464), + [anon_sym_LT_AMP] = ACTIONS(464), + [anon_sym_GT_AMP] = ACTIONS(464), + [anon_sym_DQUOTE] = ACTIONS(464), + [sym_raw_string] = ACTIONS(464), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(464), + [anon_sym_BQUOTE] = ACTIONS(464), + [anon_sym_LT_LPAREN] = ACTIONS(464), + [anon_sym_GT_LPAREN] = ACTIONS(464), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), }, [268] = { - [sym_file_descriptor] = ACTIONS(470), - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [sym_variable_name] = ACTIONS(470), + [sym_file_descriptor] = ACTIONS(468), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [sym_variable_name] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_AMP_GT] = ACTIONS(894), + [anon_sym_AMP_GT_GT] = ACTIONS(468), + [anon_sym_LT_AMP] = ACTIONS(468), + [anon_sym_GT_AMP] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_raw_string] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_LT_LPAREN] = ACTIONS(468), + [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(894), + }, + [269] = { + [sym_file_descriptor] = ACTIONS(472), + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [sym_variable_name] = ACTIONS(472), [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_PIPE_AMP] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_PIPE_AMP] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), [anon_sym_LT] = ACTIONS(896), [anon_sym_GT] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(472), [anon_sym_AMP_GT] = ACTIONS(896), - [anon_sym_AMP_GT_GT] = ACTIONS(470), - [anon_sym_LT_AMP] = ACTIONS(470), - [anon_sym_GT_AMP] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_raw_string] = ACTIONS(470), + [anon_sym_AMP_GT_GT] = ACTIONS(472), + [anon_sym_LT_AMP] = ACTIONS(472), + [anon_sym_GT_AMP] = ACTIONS(472), + [anon_sym_DQUOTE] = ACTIONS(472), + [sym_raw_string] = ACTIONS(472), [anon_sym_DOLLAR] = ACTIONS(896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), - [anon_sym_LT_LPAREN] = ACTIONS(470), - [anon_sym_GT_LPAREN] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LT_LPAREN] = ACTIONS(472), + [anon_sym_GT_LPAREN] = ACTIONS(472), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(896), }, - [269] = { - [sym_file_descriptor] = ACTIONS(474), - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(898), - [anon_sym_AMP_GT_GT] = ACTIONS(474), - [anon_sym_LT_AMP] = ACTIONS(474), - [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [anon_sym_LT_LPAREN] = ACTIONS(474), - [anon_sym_GT_LPAREN] = ACTIONS(474), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(898), - }, [270] = { [sym_special_variable_name] = STATE(531), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(995), + [sym_identifier] = ACTIONS(993), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -12593,44 +12627,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [271] = { - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_COLON_QMARK] = ACTIONS(1001), - [anon_sym_COLON_DASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_COLON_QMARK] = ACTIONS(999), + [anon_sym_COLON_DASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), [sym_comment] = ACTIONS(50), }, [272] = { - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_COLON_QMARK] = ACTIONS(1009), - [anon_sym_COLON_DASH] = ACTIONS(1009), - [anon_sym_PERCENT] = ACTIONS(1009), - [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_COLON_QMARK] = ACTIONS(1007), + [anon_sym_COLON_DASH] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), [sym_comment] = ACTIONS(50), }, [273] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [274] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12650,21 +12684,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [275] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(1011), [sym_comment] = ACTIONS(50), }, [276] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12677,29 +12711,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1013), + [anon_sym_BQUOTE] = ACTIONS(1011), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [277] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [278] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12720,70 +12754,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [279] = { [aux_sym_concatenation_repeat1] = STATE(528), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_variable_name] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [280] = { - [anon_sym_DQUOTE] = ACTIONS(468), - [sym__string_content] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), - [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym__string_content] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), [sym_comment] = ACTIONS(64), }, [281] = { - [anon_sym_DQUOTE] = ACTIONS(472), - [sym__string_content] = ACTIONS(896), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym__string_content] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), [sym_comment] = ACTIONS(64), }, [282] = { - [anon_sym_DQUOTE] = ACTIONS(476), - [sym__string_content] = ACTIONS(898), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(476), - [anon_sym_BQUOTE] = ACTIONS(476), + [anon_sym_DQUOTE] = ACTIONS(474), + [sym__string_content] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), [sym_comment] = ACTIONS(64), }, [283] = { [sym_special_variable_name] = STATE(541), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1015), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -12792,44 +12826,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [284] = { - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1021), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_COLON_QMARK] = ACTIONS(1023), - [anon_sym_COLON_DASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_COLON_QMARK] = ACTIONS(1021), + [anon_sym_COLON_DASH] = ACTIONS(1021), + [anon_sym_PERCENT] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1021), [sym_comment] = ACTIONS(50), }, [285] = { - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_COLON_QMARK] = ACTIONS(1031), - [anon_sym_COLON_DASH] = ACTIONS(1031), - [anon_sym_PERCENT] = ACTIONS(1031), - [anon_sym_SLASH] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1031), + [anon_sym_COLON_QMARK] = ACTIONS(1029), + [anon_sym_COLON_DASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), [sym_comment] = ACTIONS(50), }, [286] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [287] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12849,21 +12883,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [288] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(1033), [sym_comment] = ACTIONS(50), }, [289] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -12876,103 +12910,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1033), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [290] = { - [sym_file_descriptor] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_file_descriptor] = ACTIONS(1035), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [291] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(1041), - [sym__string_content] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1052), - [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__string_content] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1050), + [anon_sym_BQUOTE] = ACTIONS(1053), [sym_comment] = ACTIONS(64), }, [292] = { - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1058), [sym_comment] = ACTIONS(50), }, [293] = { - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1062), [sym_comment] = ACTIONS(50), }, [294] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_AMP_GT] = ACTIONS(1068), - [anon_sym_AMP_GT_GT] = ACTIONS(1068), - [anon_sym_LT_AMP] = ACTIONS(1068), - [anon_sym_GT_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_LT_LT_DASH] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LT_LPAREN] = ACTIONS(1068), - [anon_sym_GT_LPAREN] = ACTIONS(1068), + [sym_file_descriptor] = ACTIONS(1064), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1066), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_LT_LT_DASH] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_raw_string] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [295] = { - [anon_sym_AT] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1068), [sym_comment] = ACTIONS(50), }, [296] = { @@ -12982,10 +13016,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(554), [sym_command_substitution] = STATE(554), [sym_process_substitution] = STATE(554), - [sym_word] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1074), + [sym_word] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1072), + [sym_raw_string] = ACTIONS(1070), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -12993,43 +13027,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1076), + [sym_identifier] = ACTIONS(1074), }, [297] = { - [sym_file_descriptor] = ACTIONS(1078), - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_LT_LT_DASH] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_file_descriptor] = ACTIONS(1076), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_AMP_GT] = ACTIONS(1078), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_LT_LT_DASH] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [298] = { - [anon_sym_AT] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1080), [sym_comment] = ACTIONS(50), }, [299] = { @@ -13039,10 +13073,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(559), [sym_command_substitution] = STATE(559), [sym_process_substitution] = STATE(559), - [sym_word] = ACTIONS(1084), - [anon_sym_RBRACE] = ACTIONS(1062), + [sym_word] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1060), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1084), + [sym_raw_string] = ACTIONS(1082), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -13050,7 +13084,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1084), }, [300] = { [sym_string] = STATE(562), @@ -13058,9 +13092,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(562), [sym_command_substitution] = STATE(562), [sym_process_substitution] = STATE(562), - [sym_word] = ACTIONS(1088), + [sym_word] = ACTIONS(1086), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(1088), + [sym_raw_string] = ACTIONS(1086), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), @@ -13068,37 +13102,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1088), }, [301] = { [aux_sym_concatenation_repeat1] = STATE(564), [sym_file_descriptor] = ACTIONS(282), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(890), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT] = ACTIONS(888), [anon_sym_LT_LT_DASH] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [302] = { [sym_concatenation] = STATE(566), @@ -13108,11 +13142,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(565), [sym_command_substitution] = STATE(565), [sym_process_substitution] = STATE(565), - [sym_word] = ACTIONS(1092), - [sym__empty_value] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1096), + [sym_word] = ACTIONS(1090), + [sym__empty_value] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(130), - [sym_raw_string] = ACTIONS(1092), + [sym_raw_string] = ACTIONS(1090), [anon_sym_DOLLAR] = ACTIONS(132), [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), @@ -13120,101 +13154,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(140), [anon_sym_GT_LPAREN] = ACTIONS(140), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1096), }, [303] = { [sym_file_descriptor] = ACTIONS(322), [sym_word] = ACTIONS(322), [sym_variable_name] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1098), [anon_sym_RPAREN] = ACTIONS(322), [anon_sym_PIPE_AMP] = ACTIONS(322), [anon_sym_AMP_AMP] = ACTIONS(322), [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_GT] = ACTIONS(1098), [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_AMP_GT] = ACTIONS(1100), + [anon_sym_AMP_GT] = ACTIONS(1098), [anon_sym_AMP_GT_GT] = ACTIONS(322), [anon_sym_LT_AMP] = ACTIONS(322), [anon_sym_GT_AMP] = ACTIONS(322), [anon_sym_DQUOTE] = ACTIONS(322), [sym_raw_string] = ACTIONS(322), - [anon_sym_DOLLAR] = ACTIONS(1100), + [anon_sym_DOLLAR] = ACTIONS(1098), [anon_sym_DOLLAR_LBRACE] = ACTIONS(322), [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), [anon_sym_BQUOTE] = ACTIONS(322), [anon_sym_LT_LPAREN] = ACTIONS(322), [anon_sym_GT_LPAREN] = ACTIONS(322), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1098), }, [304] = { - [anon_sym_in] = ACTIONS(1102), + [anon_sym_in] = ACTIONS(1100), [sym_comment] = ACTIONS(50), }, [305] = { [sym_do_group] = STATE(571), - [anon_sym_do] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1102), [sym_comment] = ACTIONS(50), }, [306] = { - [anon_sym_then] = ACTIONS(1106), + [anon_sym_then] = ACTIONS(1104), [sym_comment] = ACTIONS(50), }, [307] = { [aux_sym_concatenation_repeat1] = STATE(194), [sym__concat] = ACTIONS(334), - [anon_sym_in] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1110), + [anon_sym_in] = ACTIONS(1106), + [anon_sym_SEMI_SEMI] = ACTIONS(1108), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_LF] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), }, [308] = { [aux_sym_concatenation_repeat1] = STATE(211), [sym__concat] = ACTIONS(334), - [anon_sym_in] = ACTIONS(1112), - [anon_sym_SEMI_SEMI] = ACTIONS(1114), + [anon_sym_in] = ACTIONS(1110), + [anon_sym_SEMI_SEMI] = ACTIONS(1112), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_LF] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_LF] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), }, [309] = { - [anon_sym_in] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1110), + [anon_sym_in] = ACTIONS(1106), + [anon_sym_SEMI_SEMI] = ACTIONS(1108), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_LF] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), }, [310] = { [sym_compound_statement] = STATE(579), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), [sym_comment] = ACTIONS(50), }, [311] = { [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), [anon_sym_PIPE_AMP] = ACTIONS(368), [anon_sym_AMP_AMP] = ACTIONS(374), [anon_sym_PIPE_PIPE] = ACTIONS(374), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_LF] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), }, [312] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(1120), - [anon_sym_SEMI_SEMI] = ACTIONS(1122), + [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_SEMI_SEMI] = ACTIONS(1120), [anon_sym_PIPE_AMP] = ACTIONS(368), [anon_sym_AMP_AMP] = ACTIONS(374), [anon_sym_PIPE_PIPE] = ACTIONS(374), @@ -13235,9 +13269,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_LF] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LF] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), }, [313] = { [sym__terminated_statement] = STATE(23), @@ -13307,7 +13341,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(64), [aux_sym_for_statement_repeat1] = STATE(256), [sym_word] = ACTIONS(100), - [anon_sym_RBRACK] = ACTIONS(1124), + [anon_sym_RBRACK] = ACTIONS(1122), [anon_sym_DQUOTE] = ACTIONS(102), [sym_raw_string] = ACTIONS(100), [anon_sym_DOLLAR] = ACTIONS(104), @@ -13328,7 +13362,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(74), [aux_sym_for_statement_repeat1] = STATE(259), [sym_word] = ACTIONS(116), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1124), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1122), [anon_sym_DQUOTE] = ACTIONS(102), [sym_raw_string] = ACTIONS(116), [anon_sym_DOLLAR] = ACTIONS(104), @@ -13343,89 +13377,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [316] = { [sym_word] = ACTIONS(412), [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1124), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_PIPE_AMP] = ACTIONS(412), [anon_sym_AMP_AMP] = ACTIONS(412), [anon_sym_PIPE_PIPE] = ACTIONS(412), [anon_sym_BQUOTE] = ACTIONS(412), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1124), }, [317] = { [sym__assignment] = STATE(586), [anon_sym_LBRACK] = ACTIONS(66), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1126), [sym_comment] = ACTIONS(50), }, [318] = { [sym_word] = ACTIONS(418), [sym_variable_name] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1128), [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_PIPE_AMP] = ACTIONS(418), [anon_sym_AMP_AMP] = ACTIONS(418), [anon_sym_PIPE_PIPE] = ACTIONS(418), [anon_sym_BQUOTE] = ACTIONS(418), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1128), }, [319] = { [sym__assignment] = STATE(586), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_PLUS_EQ] = ACTIONS(1126), [sym_comment] = ACTIONS(50), }, [320] = { [sym_variable_assignment] = STATE(316), [sym_subscript] = STATE(319), [aux_sym_declaration_command_repeat1] = STATE(587), - [sym_word] = ACTIONS(512), - [sym_variable_name] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_RPAREN] = ACTIONS(1134), - [anon_sym_PIPE_AMP] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), + [sym_word] = ACTIONS(510), + [sym_variable_name] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_PIPE_AMP] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(520), + [sym_identifier] = ACTIONS(518), }, [321] = { [sym_file_descriptor] = ACTIONS(446), [sym_word] = ACTIONS(446), [sym__concat] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(890), [anon_sym_RPAREN] = ACTIONS(446), [anon_sym_PIPE_AMP] = ACTIONS(446), [anon_sym_AMP_AMP] = ACTIONS(446), [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_AMP_GT] = ACTIONS(892), + [anon_sym_AMP_GT] = ACTIONS(890), [anon_sym_AMP_GT_GT] = ACTIONS(446), [anon_sym_LT_AMP] = ACTIONS(446), [anon_sym_GT_AMP] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(890), [anon_sym_LT_LT_DASH] = ACTIONS(446), [anon_sym_DQUOTE] = ACTIONS(446), [sym_raw_string] = ACTIONS(446), - [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_DOLLAR] = ACTIONS(890), [anon_sym_DOLLAR_LBRACE] = ACTIONS(446), [anon_sym_DOLLAR_LPAREN] = ACTIONS(446), [anon_sym_BQUOTE] = ACTIONS(446), [anon_sym_LT_LPAREN] = ACTIONS(446), [anon_sym_GT_LPAREN] = ACTIONS(446), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), }, [322] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE] = ACTIONS(1134), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -13434,107 +13468,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [323] = { - [sym_file_descriptor] = ACTIONS(466), - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_PIPE_AMP] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(466), - [anon_sym_AMP_GT] = ACTIONS(478), - [anon_sym_AMP_GT_GT] = ACTIONS(466), - [anon_sym_LT_AMP] = ACTIONS(466), - [anon_sym_GT_AMP] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_LT_LT_DASH] = ACTIONS(466), - [anon_sym_DQUOTE] = ACTIONS(466), - [sym_raw_string] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), - [anon_sym_LT_LPAREN] = ACTIONS(466), - [anon_sym_GT_LPAREN] = ACTIONS(466), + [sym_file_descriptor] = ACTIONS(464), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(464), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_AMP_GT] = ACTIONS(476), + [anon_sym_AMP_GT_GT] = ACTIONS(464), + [anon_sym_LT_AMP] = ACTIONS(464), + [anon_sym_GT_AMP] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_LT_LT_DASH] = ACTIONS(464), + [anon_sym_DQUOTE] = ACTIONS(464), + [sym_raw_string] = ACTIONS(464), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(464), + [anon_sym_BQUOTE] = ACTIONS(464), + [anon_sym_LT_LPAREN] = ACTIONS(464), + [anon_sym_GT_LPAREN] = ACTIONS(464), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), }, [324] = { - [sym_file_descriptor] = ACTIONS(470), - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), + [sym_file_descriptor] = ACTIONS(468), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_AMP_GT] = ACTIONS(894), + [anon_sym_AMP_GT_GT] = ACTIONS(468), + [anon_sym_LT_AMP] = ACTIONS(468), + [anon_sym_GT_AMP] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_LT_LT_DASH] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [sym_raw_string] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [anon_sym_LT_LPAREN] = ACTIONS(468), + [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(894), + }, + [325] = { + [sym_file_descriptor] = ACTIONS(472), + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_PIPE_AMP] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_PIPE_AMP] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), [anon_sym_LT] = ACTIONS(896), [anon_sym_GT] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(472), [anon_sym_AMP_GT] = ACTIONS(896), - [anon_sym_AMP_GT_GT] = ACTIONS(470), - [anon_sym_LT_AMP] = ACTIONS(470), - [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_AMP_GT_GT] = ACTIONS(472), + [anon_sym_LT_AMP] = ACTIONS(472), + [anon_sym_GT_AMP] = ACTIONS(472), [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_LT_LT_DASH] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_raw_string] = ACTIONS(470), + [anon_sym_LT_LT_DASH] = ACTIONS(472), + [anon_sym_DQUOTE] = ACTIONS(472), + [sym_raw_string] = ACTIONS(472), [anon_sym_DOLLAR] = ACTIONS(896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), - [anon_sym_LT_LPAREN] = ACTIONS(470), - [anon_sym_GT_LPAREN] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), + [anon_sym_LT_LPAREN] = ACTIONS(472), + [anon_sym_GT_LPAREN] = ACTIONS(472), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(896), }, - [325] = { - [sym_file_descriptor] = ACTIONS(474), - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(898), - [anon_sym_AMP_GT_GT] = ACTIONS(474), - [anon_sym_LT_AMP] = ACTIONS(474), - [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_LT_LT_DASH] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_raw_string] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [anon_sym_LT_LPAREN] = ACTIONS(474), - [anon_sym_GT_LPAREN] = ACTIONS(474), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(898), - }, [326] = { [sym_special_variable_name] = STATE(590), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1136), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -13543,44 +13577,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [327] = { - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_EQ] = ACTIONS(1144), - [anon_sym_COLON] = ACTIONS(1146), - [anon_sym_COLON_QMARK] = ACTIONS(1144), - [anon_sym_COLON_DASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_COLON] = ACTIONS(1144), + [anon_sym_COLON_QMARK] = ACTIONS(1142), + [anon_sym_COLON_DASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_SLASH] = ACTIONS(1142), [sym_comment] = ACTIONS(50), }, [328] = { - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_EQ] = ACTIONS(1152), - [anon_sym_COLON] = ACTIONS(1154), - [anon_sym_COLON_QMARK] = ACTIONS(1152), - [anon_sym_COLON_DASH] = ACTIONS(1152), - [anon_sym_PERCENT] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1150), + [anon_sym_COLON] = ACTIONS(1152), + [anon_sym_COLON_QMARK] = ACTIONS(1150), + [anon_sym_COLON_DASH] = ACTIONS(1150), + [anon_sym_PERCENT] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1150), [sym_comment] = ACTIONS(50), }, [329] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [330] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1156), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -13600,21 +13634,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [331] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(1154), [sym_comment] = ACTIONS(50), }, [332] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -13627,29 +13661,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1156), + [anon_sym_BQUOTE] = ACTIONS(1154), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [333] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [334] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1156), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -13669,38 +13703,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [335] = { - [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1158), [sym_comment] = ACTIONS(50), }, [336] = { [aux_sym_concatenation_repeat1] = STATE(564), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(920), + [anon_sym_LT_LT_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [337] = { [sym_for_statement] = STATE(600), @@ -13760,37 +13794,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(204), }, [338] = { - [sym_file_descriptor] = ACTIONS(1162), - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), - [anon_sym_PIPE_AMP] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_AMP_GT] = ACTIONS(1164), - [anon_sym_AMP_GT_GT] = ACTIONS(1164), - [anon_sym_LT_AMP] = ACTIONS(1164), - [anon_sym_GT_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1164), - [anon_sym_LT_LT_DASH] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_raw_string] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(1164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [anon_sym_LT_LPAREN] = ACTIONS(1164), - [anon_sym_GT_LPAREN] = ACTIONS(1164), + [sym_file_descriptor] = ACTIONS(1160), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_LT_LT_DASH] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_LT_LPAREN] = ACTIONS(1162), + [anon_sym_GT_LPAREN] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [339] = { [sym_for_statement] = STATE(602), @@ -13850,20 +13884,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(204), }, [340] = { - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_GT] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_AMP_GT] = ACTIONS(1166), - [anon_sym_AMP_GT_GT] = ACTIONS(1168), - [anon_sym_LT_AMP] = ACTIONS(1168), - [anon_sym_GT_AMP] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_AMP_GT] = ACTIONS(1164), + [anon_sym_AMP_GT_GT] = ACTIONS(1166), + [anon_sym_LT_AMP] = ACTIONS(1166), + [anon_sym_GT_AMP] = ACTIONS(1166), [sym_comment] = ACTIONS(50), }, [341] = { [aux_sym_concatenation_repeat1] = STATE(301), [sym_file_descriptor] = ACTIONS(388), [sym_word] = ACTIONS(388), - [sym__concat] = ACTIONS(498), + [sym__concat] = ACTIONS(496), [anon_sym_PIPE] = ACTIONS(392), [anon_sym_RPAREN] = ACTIONS(388), [anon_sym_PIPE_AMP] = ACTIONS(388), @@ -13896,29 +13930,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(605), [sym_command_substitution] = STATE(605), [sym_process_substitution] = STATE(605), - [sym_word] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_raw_string] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1182), - [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_word] = ACTIONS(1168), + [anon_sym_DQUOTE] = ACTIONS(1170), + [sym_raw_string] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LT_LPAREN] = ACTIONS(1180), + [anon_sym_GT_LPAREN] = ACTIONS(1180), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1182), }, [343] = { [sym_heredoc] = STATE(616), - [sym__simple_heredoc] = ACTIONS(1186), - [sym__heredoc_beginning] = ACTIONS(1188), + [sym__simple_heredoc] = ACTIONS(1184), + [sym__heredoc_beginning] = ACTIONS(1186), [sym_comment] = ACTIONS(50), }, [344] = { [aux_sym_concatenation_repeat1] = STATE(336), [sym_file_descriptor] = ACTIONS(406), [sym_word] = ACTIONS(406), - [sym__concat] = ACTIONS(498), + [sym__concat] = ACTIONS(496), [anon_sym_PIPE] = ACTIONS(408), [anon_sym_RPAREN] = ACTIONS(406), [anon_sym_PIPE_AMP] = ACTIONS(406), @@ -13945,22 +13979,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(408), }, [345] = { - [sym_file_descriptor] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_PIPE_AMP] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(634), - [anon_sym_PIPE_PIPE] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(634), - [anon_sym_LT_AMP] = ACTIONS(634), - [anon_sym_GT_AMP] = ACTIONS(634), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_LT_LT_DASH] = ACTIONS(634), - [anon_sym_BQUOTE] = ACTIONS(634), + [sym_file_descriptor] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(632), + [anon_sym_PIPE_AMP] = ACTIONS(632), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_GT] = ACTIONS(1188), + [anon_sym_GT_GT] = ACTIONS(632), + [anon_sym_AMP_GT] = ACTIONS(1188), + [anon_sym_AMP_GT_GT] = ACTIONS(632), + [anon_sym_LT_AMP] = ACTIONS(632), + [anon_sym_GT_AMP] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(1188), + [anon_sym_LT_LT_DASH] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(632), [sym_comment] = ACTIONS(50), }, [346] = { @@ -14002,24 +14036,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(341), [aux_sym_for_statement_repeat1] = STATE(617), [aux_sym_command_repeat2] = STATE(618), - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [sym_word] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(548), + [sym_raw_string] = ACTIONS(546), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), @@ -14027,58 +14061,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), }, [348] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(619), - [sym_file_descriptor] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [sym_comment] = ACTIONS(50), }, [349] = { [aux_sym_concatenation_repeat1] = STATE(336), [sym_file_descriptor] = ACTIONS(216), [sym_word] = ACTIONS(216), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(534), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(532), [anon_sym_RPAREN] = ACTIONS(216), [anon_sym_PIPE_AMP] = ACTIONS(216), [anon_sym_AMP_AMP] = ACTIONS(216), [anon_sym_PIPE_PIPE] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), [anon_sym_GT_GT] = ACTIONS(216), - [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT] = ACTIONS(532), [anon_sym_AMP_GT_GT] = ACTIONS(216), [anon_sym_LT_AMP] = ACTIONS(216), [anon_sym_GT_AMP] = ACTIONS(216), - [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(532), [anon_sym_LT_LT_DASH] = ACTIONS(216), [anon_sym_DQUOTE] = ACTIONS(216), [sym_raw_string] = ACTIONS(216), - [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR] = ACTIONS(532), [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), [anon_sym_BQUOTE] = ACTIONS(216), [anon_sym_LT_LPAREN] = ACTIONS(216), [anon_sym_GT_LPAREN] = ACTIONS(216), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(534), + [sym_identifier] = ACTIONS(532), }, [350] = { [sym_file_redirect] = STATE(345), @@ -14091,24 +14125,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(341), [aux_sym_for_statement_repeat1] = STATE(620), [aux_sym_command_repeat2] = STATE(618), - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [sym_word] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(548), + [sym_raw_string] = ACTIONS(546), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), @@ -14116,36 +14150,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), }, [351] = { [aux_sym_concatenation_repeat1] = STATE(621), [sym_file_descriptor] = ACTIONS(282), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(890), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT] = ACTIONS(888), [anon_sym_LT_LT_DASH] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [352] = { [sym_concatenation] = STATE(566), @@ -14155,11 +14189,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(622), [sym_command_substitution] = STATE(622), [sym_process_substitution] = STATE(622), - [sym_word] = ACTIONS(1196), - [sym__empty_value] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1096), + [sym_word] = ACTIONS(1194), + [sym__empty_value] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(130), - [sym_raw_string] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1194), [anon_sym_DOLLAR] = ACTIONS(132), [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), @@ -14167,73 +14201,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(140), [anon_sym_GT_LPAREN] = ACTIONS(140), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1196), }, [353] = { [sym_compound_statement] = STATE(625), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1116), [sym_comment] = ACTIONS(50), }, [354] = { [sym__assignment] = STATE(586), [anon_sym_LBRACK] = ACTIONS(66), - [anon_sym_EQ] = ACTIONS(1202), - [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1200), + [anon_sym_PLUS_EQ] = ACTIONS(1200), [sym_comment] = ACTIONS(50), }, [355] = { [sym__assignment] = STATE(586), - [anon_sym_EQ] = ACTIONS(1202), - [anon_sym_PLUS_EQ] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1200), + [anon_sym_PLUS_EQ] = ACTIONS(1200), [sym_comment] = ACTIONS(50), }, [356] = { [sym_variable_assignment] = STATE(316), [sym_subscript] = STATE(355), [aux_sym_declaration_command_repeat1] = STATE(627), - [sym_word] = ACTIONS(512), - [sym_variable_name] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_PIPE_AMP] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_BQUOTE] = ACTIONS(1134), + [sym_word] = ACTIONS(510), + [sym_variable_name] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_PIPE_AMP] = ACTIONS(1132), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_BQUOTE] = ACTIONS(1132), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(520), + [sym_identifier] = ACTIONS(518), }, [357] = { - [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1202), [sym_comment] = ACTIONS(50), }, [358] = { [aux_sym_concatenation_repeat1] = STATE(621), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(920), + [anon_sym_LT_LT_DASH] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [359] = { [sym_for_statement] = STATE(600), @@ -14350,20 +14384,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(214), }, [361] = { - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1206), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_AMP_GT] = ACTIONS(1206), - [anon_sym_AMP_GT_GT] = ACTIONS(1208), - [anon_sym_LT_AMP] = ACTIONS(1208), - [anon_sym_GT_AMP] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_GT_GT] = ACTIONS(1206), + [anon_sym_AMP_GT] = ACTIONS(1204), + [anon_sym_AMP_GT_GT] = ACTIONS(1206), + [anon_sym_LT_AMP] = ACTIONS(1206), + [anon_sym_GT_AMP] = ACTIONS(1206), [sym_comment] = ACTIONS(50), }, [362] = { [aux_sym_concatenation_repeat1] = STATE(351), [sym_file_descriptor] = ACTIONS(388), [sym_word] = ACTIONS(388), - [sym__concat] = ACTIONS(498), + [sym__concat] = ACTIONS(496), [anon_sym_PIPE] = ACTIONS(392), [anon_sym_PIPE_AMP] = ACTIONS(388), [anon_sym_AMP_AMP] = ACTIONS(388), @@ -14395,23 +14429,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(633), [sym_command_substitution] = STATE(633), [sym_process_substitution] = STATE(633), - [sym_word] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_raw_string] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1182), - [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_word] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1170), + [sym_raw_string] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LT_LPAREN] = ACTIONS(1180), + [anon_sym_GT_LPAREN] = ACTIONS(1180), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1210), }, [364] = { [aux_sym_concatenation_repeat1] = STATE(358), [sym_file_descriptor] = ACTIONS(406), [sym_word] = ACTIONS(406), - [sym__concat] = ACTIONS(498), + [sym__concat] = ACTIONS(496), [anon_sym_PIPE] = ACTIONS(408), [anon_sym_PIPE_AMP] = ACTIONS(406), [anon_sym_AMP_AMP] = ACTIONS(406), @@ -14447,81 +14481,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(362), [aux_sym_for_statement_repeat1] = STATE(635), [aux_sym_command_repeat2] = STATE(636), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(578), + [sym_word] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(582), + [sym_raw_string] = ACTIONS(580), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1192), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(588), + [sym_identifier] = ACTIONS(586), }, [366] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(637), - [sym_file_descriptor] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), - [anon_sym_BQUOTE] = ACTIONS(1194), + [sym_file_descriptor] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), + [anon_sym_BQUOTE] = ACTIONS(1192), [sym_comment] = ACTIONS(50), }, [367] = { [aux_sym_concatenation_repeat1] = STATE(358), [sym_file_descriptor] = ACTIONS(216), [sym_word] = ACTIONS(216), - [sym__concat] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(534), + [sym__concat] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(532), [anon_sym_PIPE_AMP] = ACTIONS(216), [anon_sym_AMP_AMP] = ACTIONS(216), [anon_sym_PIPE_PIPE] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), [anon_sym_GT_GT] = ACTIONS(216), - [anon_sym_AMP_GT] = ACTIONS(534), + [anon_sym_AMP_GT] = ACTIONS(532), [anon_sym_AMP_GT_GT] = ACTIONS(216), [anon_sym_LT_AMP] = ACTIONS(216), [anon_sym_GT_AMP] = ACTIONS(216), - [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(532), [anon_sym_LT_LT_DASH] = ACTIONS(216), [anon_sym_DQUOTE] = ACTIONS(216), [sym_raw_string] = ACTIONS(216), - [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_DOLLAR] = ACTIONS(532), [anon_sym_DOLLAR_LBRACE] = ACTIONS(216), [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), [anon_sym_BQUOTE] = ACTIONS(216), [anon_sym_LT_LPAREN] = ACTIONS(216), [anon_sym_GT_LPAREN] = ACTIONS(216), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(534), + [sym_identifier] = ACTIONS(532), }, [368] = { [sym_file_redirect] = STATE(345), @@ -14534,64 +14568,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(362), [aux_sym_for_statement_repeat1] = STATE(638), [aux_sym_command_repeat2] = STATE(636), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_PIPE_AMP] = ACTIONS(1194), - [anon_sym_AMP_AMP] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(578), + [sym_word] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_PIPE_AMP] = ACTIONS(1192), + [anon_sym_AMP_AMP] = ACTIONS(1192), + [anon_sym_PIPE_PIPE] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(582), + [sym_raw_string] = ACTIONS(580), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1192), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(588), + [sym_identifier] = ACTIONS(586), }, [369] = { - [sym_file_descriptor] = ACTIONS(1214), - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_LT_LT_DASH] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_raw_string] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1216), - [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_file_descriptor] = ACTIONS(1212), + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_AMP_GT] = ACTIONS(1214), + [anon_sym_AMP_GT_GT] = ACTIONS(1214), + [anon_sym_LT_AMP] = ACTIONS(1214), + [anon_sym_GT_AMP] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_LT_LT_DASH] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_raw_string] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1214), + [anon_sym_GT_LPAREN] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [370] = { [sym_compound_statement] = STATE(639), @@ -14599,27 +14633,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(50), }, [371] = { - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_SEMI_SEMI] = ACTIONS(1218), - [anon_sym_PIPE_AMP] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_LF] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), }, [372] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_SEMI_SEMI] = ACTIONS(1218), - [anon_sym_PIPE_AMP] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(1216), + [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [anon_sym_PIPE_AMP] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), [anon_sym_LT] = ACTIONS(264), [anon_sym_GT] = ACTIONS(264), [anon_sym_GT_GT] = ACTIONS(264), @@ -14637,30 +14671,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_LF] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_LF] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), }, [373] = { [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), [anon_sym_PIPE_AMP] = ACTIONS(230), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), }, [374] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), [anon_sym_PIPE_AMP] = ACTIONS(230), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), [anon_sym_LT] = ACTIONS(264), [anon_sym_GT] = ACTIONS(264), [anon_sym_GT_GT] = ACTIONS(264), @@ -14678,9 +14712,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), }, [375] = { [sym_concatenation] = STATE(642), @@ -14689,47 +14723,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(640), [sym_command_substitution] = STATE(640), [sym_process_substitution] = STATE(640), - [sym_word] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(614), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_word] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(612), + [sym_raw_string] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1222), }, [376] = { [aux_sym_concatenation_repeat1] = STATE(644), [sym_file_descriptor] = ACTIONS(424), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_LT_LT_DASH] = ACTIONS(1228), + [sym__concat] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [377] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(646), - [anon_sym_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1228), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -14739,25 +14773,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [378] = { [sym_special_variable_name] = STATE(649), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1230), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_0] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_QMARK] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_0] = ACTIONS(1234), + [anon_sym__] = ACTIONS(1234), }, [379] = { [sym_special_variable_name] = STATE(652), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(1236), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1238), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -14939,101 +14973,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [383] = { [aux_sym_concatenation_repeat1] = STATE(659), [sym_file_descriptor] = ACTIONS(442), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [sym__concat] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_SEMI_SEMI] = ACTIONS(1240), + [anon_sym_PIPE_AMP] = ACTIONS(1240), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_GT_GT] = ACTIONS(1240), + [anon_sym_AMP_GT] = ACTIONS(1240), + [anon_sym_AMP_GT_GT] = ACTIONS(1240), + [anon_sym_LT_AMP] = ACTIONS(1240), + [anon_sym_GT_AMP] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1240), + [anon_sym_LT_LT_DASH] = ACTIONS(1240), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LF] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), }, [384] = { [sym_file_descriptor] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_LT_LT_DASH] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [385] = { - [sym_file_descriptor] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), + [sym_file_descriptor] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(1244), + [anon_sym_SEMI_SEMI] = ACTIONS(1244), + [anon_sym_PIPE_AMP] = ACTIONS(1244), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1244), + [anon_sym_GT_GT] = ACTIONS(1244), + [anon_sym_AMP_GT] = ACTIONS(1244), + [anon_sym_AMP_GT_GT] = ACTIONS(1244), + [anon_sym_LT_AMP] = ACTIONS(1244), + [anon_sym_GT_AMP] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1244), + [anon_sym_LT_LT_DASH] = ACTIONS(1244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_LF] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), }, [386] = { [sym_simple_expansion] = STATE(660), [sym_expansion] = STATE(660), [aux_sym_heredoc_repeat1] = STATE(664), - [sym__heredoc_middle] = ACTIONS(1248), - [sym__heredoc_end] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym__heredoc_middle] = ACTIONS(1246), + [sym__heredoc_end] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), [sym_comment] = ACTIONS(50), }, [387] = { - [sym_file_descriptor] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_RPAREN] = ACTIONS(1256), + [anon_sym_SEMI_SEMI] = ACTIONS(1256), + [anon_sym_PIPE_AMP] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_PIPE_PIPE] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(1256), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_LT_LT_DASH] = ACTIONS(1256), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_LF] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), }, [388] = { [sym_concatenation] = STATE(152), @@ -15043,46 +15077,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(147), [sym_process_substitution] = STATE(147), [aux_sym_for_statement_repeat1] = STATE(388), - [sym_file_descriptor] = ACTIONS(929), - [sym_word] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_SEMI_SEMI] = ACTIONS(1263), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [anon_sym_AMP_GT] = ACTIONS(1263), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1283), - [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_file_descriptor] = ACTIONS(927), + [sym_word] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), }, [389] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(390), [sym_file_descriptor] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1289), - [anon_sym_PIPE_AMP] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1289), - [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1287), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(242), @@ -15093,33 +15127,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(244), [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), }, [390] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(390), - [sym_file_descriptor] = ACTIONS(1291), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1299), - [anon_sym_LT_LT_DASH] = ACTIONS(1299), + [sym_file_descriptor] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_SEMI_SEMI] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1297), + [anon_sym_LT_LT_DASH] = ACTIONS(1297), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), }, [391] = { [sym_concatenation] = STATE(566), @@ -15129,11 +15163,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(665), [sym_command_substitution] = STATE(665), [sym_process_substitution] = STATE(665), - [sym_word] = ACTIONS(1302), - [sym__empty_value] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1096), + [sym_word] = ACTIONS(1300), + [sym__empty_value] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(130), - [sym_raw_string] = ACTIONS(1302), + [sym_raw_string] = ACTIONS(1300), [anon_sym_DOLLAR] = ACTIONS(132), [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), [anon_sym_DOLLAR_LPAREN] = ACTIONS(136), @@ -15141,7 +15175,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(140), [anon_sym_GT_LPAREN] = ACTIONS(140), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1302), }, [392] = { [sym_file_redirect] = STATE(151), @@ -15156,11 +15190,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat2] = STATE(667), [sym_file_descriptor] = ACTIONS(236), [sym_word] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1289), - [anon_sym_PIPE_AMP] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1289), - [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1287), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(242), @@ -15180,9 +15214,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), }, [393] = { [sym_string] = STATE(668), @@ -15190,9 +15224,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), + [sym_word] = ACTIONS(1304), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -15200,16 +15234,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [394] = { - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), [sym_comment] = ACTIONS(50), }, [395] = { [aux_sym_concatenation_repeat1] = STATE(670), - [sym__concat] = ACTIONS(742), + [sym__concat] = ACTIONS(740), [anon_sym_RBRACK] = ACTIONS(282), [sym_comment] = ACTIONS(50), }, @@ -15226,7 +15260,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1310), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -15235,44 +15269,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [398] = { - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(466), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_RBRACK] = ACTIONS(464), [sym_comment] = ACTIONS(50), }, [399] = { - [sym__concat] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_RBRACK] = ACTIONS(470), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_RBRACK] = ACTIONS(468), [sym_comment] = ACTIONS(50), }, [400] = { - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_RBRACK] = ACTIONS(474), + [sym__concat] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_RBRACK] = ACTIONS(472), [sym_comment] = ACTIONS(50), }, [401] = { [sym_special_variable_name] = STATE(673), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1312), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -15281,44 +15315,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [402] = { - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_COLON_QMARK] = ACTIONS(1320), - [anon_sym_COLON_DASH] = ACTIONS(1320), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_COLON] = ACTIONS(1320), + [anon_sym_COLON_QMARK] = ACTIONS(1318), + [anon_sym_COLON_DASH] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), [sym_comment] = ACTIONS(50), }, [403] = { - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_COLON] = ACTIONS(1330), - [anon_sym_COLON_QMARK] = ACTIONS(1328), - [anon_sym_COLON_DASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_QMARK] = ACTIONS(1326), + [anon_sym_COLON_DASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), [sym_comment] = ACTIONS(50), }, [404] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [405] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -15338,21 +15372,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [406] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(1330), [sym_comment] = ACTIONS(50), }, [407] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -15365,29 +15399,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1330), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [408] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [409] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -15407,14 +15441,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [410] = { - [anon_sym_EQ] = ACTIONS(1336), - [anon_sym_PLUS_EQ] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1334), + [anon_sym_PLUS_EQ] = ACTIONS(1334), [sym_comment] = ACTIONS(50), }, [411] = { [aux_sym_concatenation_repeat1] = STATE(670), - [sym__concat] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(596), + [sym__concat] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [412] = { @@ -15423,9 +15457,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(682), [sym_command_substitution] = STATE(682), [sym_process_substitution] = STATE(682), - [sym_word] = ACTIONS(1338), + [sym_word] = ACTIONS(1336), [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(1338), + [sym_raw_string] = ACTIONS(1336), [anon_sym_DOLLAR] = ACTIONS(310), [anon_sym_DOLLAR_LBRACE] = ACTIONS(312), [anon_sym_DOLLAR_LPAREN] = ACTIONS(314), @@ -15433,13 +15467,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(318), [anon_sym_GT_LPAREN] = ACTIONS(318), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), }, [413] = { [aux_sym_concatenation_repeat1] = STATE(684), [sym_file_descriptor] = ACTIONS(282), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(762), + [sym__concat] = ACTIONS(760), [sym_variable_name] = ACTIONS(282), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_SEMI_SEMI] = ACTIONS(284), @@ -15484,35 +15518,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(392), }, [415] = { - [sym_file_descriptor] = ACTIONS(1342), - [sym_word] = ACTIONS(1342), - [sym_variable_name] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_SEMI_SEMI] = ACTIONS(1344), - [anon_sym_PIPE_AMP] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_GT] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1344), - [anon_sym_AMP_GT] = ACTIONS(1344), - [anon_sym_AMP_GT_GT] = ACTIONS(1344), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_raw_string] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1344), - [anon_sym_BQUOTE] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1344), - [anon_sym_GT_LPAREN] = ACTIONS(1344), + [sym_file_descriptor] = ACTIONS(1340), + [sym_word] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1342), + [anon_sym_GT_AMP] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), }, [416] = { [aux_sym_concatenation_repeat1] = STATE(686), @@ -15538,10 +15572,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(688), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(1346), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(1344), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -15549,7 +15583,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [418] = { [sym_file_descriptor] = ACTIONS(446), @@ -15588,7 +15622,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1346), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -15597,116 +15631,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [420] = { - [sym_file_descriptor] = ACTIONS(466), - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [sym_variable_name] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(468), - [anon_sym_PIPE_AMP] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_AMP_GT] = ACTIONS(468), - [anon_sym_AMP_GT_GT] = ACTIONS(468), - [anon_sym_LT_AMP] = ACTIONS(468), - [anon_sym_GT_AMP] = ACTIONS(468), - [anon_sym_DQUOTE] = ACTIONS(468), - [sym_raw_string] = ACTIONS(468), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), - [anon_sym_BQUOTE] = ACTIONS(468), - [anon_sym_LT_LPAREN] = ACTIONS(468), - [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_file_descriptor] = ACTIONS(464), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [sym_variable_name] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_AMP_GT] = ACTIONS(466), + [anon_sym_AMP_GT_GT] = ACTIONS(466), + [anon_sym_LT_AMP] = ACTIONS(466), + [anon_sym_GT_AMP] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_raw_string] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_LT_LPAREN] = ACTIONS(466), + [anon_sym_GT_LPAREN] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [sym_identifier] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [421] = { - [sym_file_descriptor] = ACTIONS(470), - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [sym_variable_name] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [anon_sym_PIPE_AMP] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_AMP_GT] = ACTIONS(472), - [anon_sym_AMP_GT_GT] = ACTIONS(472), - [anon_sym_LT_AMP] = ACTIONS(472), - [anon_sym_GT_AMP] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(472), - [anon_sym_LT_LPAREN] = ACTIONS(472), - [anon_sym_GT_LPAREN] = ACTIONS(472), + [sym_file_descriptor] = ACTIONS(468), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [sym_variable_name] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_PIPE_AMP] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(470), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_raw_string] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_LT_LPAREN] = ACTIONS(470), + [anon_sym_GT_LPAREN] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [sym_identifier] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [422] = { - [sym_file_descriptor] = ACTIONS(474), - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_SEMI_SEMI] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_AMP_GT] = ACTIONS(476), - [anon_sym_AMP_GT_GT] = ACTIONS(476), - [anon_sym_LT_AMP] = ACTIONS(476), - [anon_sym_GT_AMP] = ACTIONS(476), - [anon_sym_DQUOTE] = ACTIONS(476), - [sym_raw_string] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(476), - [anon_sym_BQUOTE] = ACTIONS(476), - [anon_sym_LT_LPAREN] = ACTIONS(476), - [anon_sym_GT_LPAREN] = ACTIONS(476), + [sym_file_descriptor] = ACTIONS(472), + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [sym_variable_name] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_PIPE_AMP] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(474), + [sym_raw_string] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), + [anon_sym_LT_LPAREN] = ACTIONS(474), + [anon_sym_GT_LPAREN] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [sym_identifier] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [423] = { [sym_special_variable_name] = STATE(691), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -15715,44 +15749,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [424] = { - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_COLON] = ACTIONS(1358), - [anon_sym_COLON_QMARK] = ACTIONS(1356), - [anon_sym_COLON_DASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1356), + [anon_sym_COLON_QMARK] = ACTIONS(1354), + [anon_sym_COLON_DASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), [sym_comment] = ACTIONS(50), }, [425] = { - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1366), - [anon_sym_COLON_QMARK] = ACTIONS(1364), - [anon_sym_COLON_DASH] = ACTIONS(1364), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1364), + [anon_sym_COLON_QMARK] = ACTIONS(1362), + [anon_sym_COLON_DASH] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), [sym_comment] = ACTIONS(50), }, [426] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [427] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -15772,21 +15806,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [428] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(1366), [sym_comment] = ACTIONS(50), }, [429] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -15799,29 +15833,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1366), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [430] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [431] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -15842,61 +15876,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [432] = { [aux_sym_concatenation_repeat1] = STATE(684), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(762), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_AMP_GT] = ACTIONS(598), - [anon_sym_AMP_GT_GT] = ACTIONS(598), - [anon_sym_LT_AMP] = ACTIONS(598), - [anon_sym_GT_AMP] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(598), - [sym_raw_string] = ACTIONS(598), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), - [anon_sym_BQUOTE] = ACTIONS(598), - [anon_sym_LT_LPAREN] = ACTIONS(598), - [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(760), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(596), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [433] = { [aux_sym_concatenation_repeat1] = STATE(701), [sym_word] = ACTIONS(388), - [sym__concat] = ACTIONS(1372), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), + [sym__concat] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [434] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(703), - [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1372), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -15906,25 +15940,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [435] = { [sym_special_variable_name] = STATE(706), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1374), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_0] = ACTIONS(1380), - [anon_sym__] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_0] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1378), }, [436] = { [sym_special_variable_name] = STATE(709), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1380), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -16106,38 +16140,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [440] = { [aux_sym_concatenation_repeat1] = STATE(716), [sym_word] = ACTIONS(406), - [sym__concat] = ACTIONS(1372), - [anon_sym_SEMI_SEMI] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(632), - [sym_raw_string] = ACTIONS(632), - [anon_sym_DOLLAR] = ACTIONS(632), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(632), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(632), - [anon_sym_GT_LPAREN] = ACTIONS(632), + [sym__concat] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(630), + [sym_raw_string] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LT_LPAREN] = ACTIONS(630), + [anon_sym_GT_LPAREN] = ACTIONS(630), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_LF] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(632), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LF] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), }, [441] = { [sym_word] = ACTIONS(388), - [anon_sym_SEMI_SEMI] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(610), - [sym_raw_string] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), - [anon_sym_BQUOTE] = ACTIONS(610), - [anon_sym_LT_LPAREN] = ACTIONS(610), - [anon_sym_GT_LPAREN] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(608), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_LF] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LF] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), }, [442] = { [sym_concatenation] = STATE(441), @@ -16147,33 +16181,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(433), [sym_process_substitution] = STATE(433), [aux_sym_for_statement_repeat1] = STATE(718), - [sym_word] = ACTIONS(788), - [anon_sym_SEMI_SEMI] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_raw_string] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_word] = ACTIONS(786), + [anon_sym_SEMI_SEMI] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_raw_string] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1398), + [anon_sym_GT_LPAREN] = ACTIONS(1398), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LF] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_LF] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), }, [443] = { - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_SEMI_SEMI] = ACTIONS(1404), - [anon_sym_PIPE_AMP] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_SEMI_SEMI] = ACTIONS(1402), + [anon_sym_PIPE_AMP] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_LF] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), }, [444] = { [sym_file_descriptor] = ACTIONS(224), @@ -16213,21 +16247,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [445] = { [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [anon_sym_SEMI_SEMI] = ACTIONS(1404), [anon_sym_PIPE_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(234), [anon_sym_PIPE_PIPE] = ACTIONS(234), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), }, [446] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1406), + [anon_sym_SEMI_SEMI] = ACTIONS(1404), [anon_sym_PIPE_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(234), [anon_sym_PIPE_PIPE] = ACTIONS(234), @@ -16248,9 +16282,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_LF] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), }, [447] = { [sym__terminated_statement] = STATE(444), @@ -16282,7 +16316,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1408), + [anon_sym_done] = ACTIONS(1406), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -16313,16 +16347,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [448] = { - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1410), - [anon_sym_PIPE_AMP] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_SEMI_SEMI] = ACTIONS(1408), + [anon_sym_PIPE_AMP] = ACTIONS(1408), + [anon_sym_AMP_AMP] = ACTIONS(1408), + [anon_sym_PIPE_PIPE] = ACTIONS(1408), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LF] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_LF] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), }, [449] = { [sym__terminated_statement] = STATE(722), @@ -16413,7 +16447,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1412), + [anon_sym_fi] = ACTIONS(1410), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -16482,23 +16516,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [452] = { [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1414), + [anon_sym_SEMI_SEMI] = ACTIONS(1412), [anon_sym_PIPE_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(234), [anon_sym_PIPE_PIPE] = ACTIONS(234), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), }, [453] = { - [anon_sym_fi] = ACTIONS(1416), - [anon_sym_elif] = ACTIONS(1416), - [anon_sym_else] = ACTIONS(1416), + [anon_sym_fi] = ACTIONS(1414), + [anon_sym_elif] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), [sym_comment] = ACTIONS(50), }, [454] = { - [anon_sym_fi] = ACTIONS(1418), + [anon_sym_fi] = ACTIONS(1416), [sym_comment] = ACTIONS(50), }, [455] = { @@ -16506,7 +16540,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(1414), + [anon_sym_SEMI_SEMI] = ACTIONS(1412), [anon_sym_PIPE_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(234), [anon_sym_PIPE_PIPE] = ACTIONS(234), @@ -16527,9 +16561,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LF] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), }, [456] = { [sym__terminated_statement] = STATE(451), @@ -16565,9 +16599,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1420), - [anon_sym_elif] = ACTIONS(810), - [anon_sym_else] = ACTIONS(812), + [anon_sym_fi] = ACTIONS(1418), + [anon_sym_elif] = ACTIONS(808), + [anon_sym_else] = ACTIONS(810), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -16600,28 +16634,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_elif_clause] = STATE(453), [sym_else_clause] = STATE(729), [aux_sym_if_statement_repeat1] = STATE(732), - [anon_sym_fi] = ACTIONS(1418), - [anon_sym_elif] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1424), + [anon_sym_fi] = ACTIONS(1416), + [anon_sym_elif] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1422), [sym_comment] = ACTIONS(50), }, [458] = { - [sym__concat] = ACTIONS(731), - [anon_sym_in] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym__concat] = ACTIONS(729), + [anon_sym_in] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [459] = { - [sym__concat] = ACTIONS(735), - [anon_sym_in] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), + [sym__concat] = ACTIONS(733), + [anon_sym_in] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [460] = { [sym_case_item] = STATE(736), @@ -16632,10 +16666,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(738), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(1428), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(1426), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -16643,55 +16677,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [461] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1432), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_LF] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), }, [462] = { [aux_sym_concatenation_repeat1] = STATE(462), - [sym__concat] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), + [sym__concat] = ACTIONS(1432), + [anon_sym_in] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [463] = { - [sym__concat] = ACTIONS(1037), - [anon_sym_in] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), + [sym__concat] = ACTIONS(1035), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [464] = { - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), [sym_comment] = ACTIONS(50), }, [465] = { - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1441), [sym_comment] = ACTIONS(50), }, [466] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), + [sym__concat] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [467] = { - [anon_sym_AT] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1443), [sym_comment] = ACTIONS(50), }, [468] = { @@ -16701,10 +16735,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(745), [sym_command_substitution] = STATE(745), [sym_process_substitution] = STATE(745), - [sym_word] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1449), + [sym_word] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1447), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1447), + [sym_raw_string] = ACTIONS(1445), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -16712,19 +16746,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1449), }, [469] = { - [sym__concat] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [sym__concat] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [470] = { - [anon_sym_AT] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1451), [sym_comment] = ACTIONS(50), }, [471] = { @@ -16734,10 +16768,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(750), [sym_command_substitution] = STATE(750), [sym_process_substitution] = STATE(750), - [sym_word] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1441), + [sym_word] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1439), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1455), + [sym_raw_string] = ACTIONS(1453), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -16745,25 +16779,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1455), }, [472] = { - [sym__concat] = ACTIONS(1162), - [anon_sym_in] = ACTIONS(1164), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), + [sym__concat] = ACTIONS(1160), + [anon_sym_in] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [473] = { - [sym__concat] = ACTIONS(1214), - [anon_sym_in] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), + [sym__concat] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [474] = { [sym_case_item] = STATE(736), @@ -16774,10 +16808,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(754), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(1459), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(1457), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -16785,14 +16819,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [475] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1461), + [anon_sym_SEMI_SEMI] = ACTIONS(1459), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_LF] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_LF] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), }, [476] = { [sym_compound_statement] = STATE(756), @@ -16800,24 +16834,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(50), }, [477] = { - [sym_file_descriptor] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_SEMI_SEMI] = ACTIONS(1465), - [anon_sym_PIPE_AMP] = ACTIONS(1465), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_PIPE_PIPE] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_AMP_GT] = ACTIONS(1465), - [anon_sym_AMP_GT_GT] = ACTIONS(1465), - [anon_sym_LT_AMP] = ACTIONS(1465), - [anon_sym_GT_AMP] = ACTIONS(1465), + [sym_file_descriptor] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_SEMI_SEMI] = ACTIONS(1463), + [anon_sym_PIPE_AMP] = ACTIONS(1463), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_AMP_GT] = ACTIONS(1463), + [anon_sym_AMP_GT_GT] = ACTIONS(1463), + [anon_sym_LT_AMP] = ACTIONS(1463), + [anon_sym_GT_AMP] = ACTIONS(1463), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_LF] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), }, [478] = { [sym__terminated_statement] = STATE(23), @@ -16853,7 +16887,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1465), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -16880,13 +16914,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [479] = { - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1471), - [anon_sym_AMP_GT] = ACTIONS(1469), - [anon_sym_AMP_GT_GT] = ACTIONS(1471), - [anon_sym_LT_AMP] = ACTIONS(1471), - [anon_sym_GT_AMP] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1469), + [anon_sym_AMP_GT] = ACTIONS(1467), + [anon_sym_AMP_GT_GT] = ACTIONS(1469), + [anon_sym_LT_AMP] = ACTIONS(1469), + [anon_sym_GT_AMP] = ACTIONS(1469), [sym_comment] = ACTIONS(50), }, [480] = { @@ -16896,154 +16930,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(760), [sym_command_substitution] = STATE(760), [sym_process_substitution] = STATE(760), - [sym_word] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_raw_string] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LT_LPAREN] = ACTIONS(1485), - [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_word] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym_raw_string] = ACTIONS(1471), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1481), + [anon_sym_LT_LPAREN] = ACTIONS(1483), + [anon_sym_GT_LPAREN] = ACTIONS(1483), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1485), }, [481] = { - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_RPAREN] = ACTIONS(1489), - [anon_sym_SEMI_SEMI] = ACTIONS(1489), - [anon_sym_PIPE_AMP] = ACTIONS(1489), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_SEMI_SEMI] = ACTIONS(1487), + [anon_sym_PIPE_AMP] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_LF] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_LF] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), }, [482] = { [aux_sym_concatenation_repeat1] = STATE(482), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [483] = { [aux_sym_concatenation_repeat1] = STATE(769), - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), - [sym__concat] = ACTIONS(762), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(764), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), + [sym__concat] = ACTIONS(760), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_PIPE_AMP] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_AMP_GT] = ACTIONS(762), + [anon_sym_AMP_GT_GT] = ACTIONS(762), + [anon_sym_LT_AMP] = ACTIONS(762), + [anon_sym_GT_AMP] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(762), + [sym_raw_string] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), + [anon_sym_BQUOTE] = ACTIONS(762), + [anon_sym_LT_LPAREN] = ACTIONS(762), + [anon_sym_GT_LPAREN] = ACTIONS(762), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), }, [484] = { [aux_sym_concatenation_repeat1] = STATE(770), - [sym_file_descriptor] = ACTIONS(784), - [sym_word] = ACTIONS(784), - [sym__concat] = ACTIONS(762), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(786), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_SEMI_SEMI] = ACTIONS(786), - [anon_sym_PIPE_AMP] = ACTIONS(786), - [anon_sym_AMP_AMP] = ACTIONS(786), - [anon_sym_PIPE_PIPE] = ACTIONS(786), - [anon_sym_LT] = ACTIONS(786), - [anon_sym_GT] = ACTIONS(786), - [anon_sym_GT_GT] = ACTIONS(786), - [anon_sym_AMP_GT] = ACTIONS(786), - [anon_sym_AMP_GT_GT] = ACTIONS(786), - [anon_sym_LT_AMP] = ACTIONS(786), - [anon_sym_GT_AMP] = ACTIONS(786), - [anon_sym_DQUOTE] = ACTIONS(786), - [sym_raw_string] = ACTIONS(786), - [anon_sym_DOLLAR] = ACTIONS(786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), - [anon_sym_BQUOTE] = ACTIONS(786), - [anon_sym_LT_LPAREN] = ACTIONS(786), - [anon_sym_GT_LPAREN] = ACTIONS(786), + [sym_file_descriptor] = ACTIONS(782), + [sym_word] = ACTIONS(782), + [sym__concat] = ACTIONS(760), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_SEMI_SEMI] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_GT_GT] = ACTIONS(784), + [anon_sym_AMP_GT] = ACTIONS(784), + [anon_sym_AMP_GT_GT] = ACTIONS(784), + [anon_sym_LT_AMP] = ACTIONS(784), + [anon_sym_GT_AMP] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [sym_raw_string] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LT_LPAREN] = ACTIONS(784), + [anon_sym_GT_LPAREN] = ACTIONS(784), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_LF] = ACTIONS(786), - [anon_sym_AMP] = ACTIONS(786), + [sym_identifier] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), }, [485] = { - [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1489), [sym_comment] = ACTIONS(50), }, [486] = { [sym_file_redirect] = STATE(481), - [sym_file_descriptor] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(856), - [anon_sym_SEMI_SEMI] = ACTIONS(856), - [anon_sym_PIPE_AMP] = ACTIONS(856), - [anon_sym_AMP_AMP] = ACTIONS(856), - [anon_sym_PIPE_PIPE] = ACTIONS(856), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_AMP_GT] = ACTIONS(1495), - [anon_sym_AMP_GT_GT] = ACTIONS(1495), - [anon_sym_LT_AMP] = ACTIONS(1495), - [anon_sym_GT_AMP] = ACTIONS(1495), + [sym_file_descriptor] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_SEMI_SEMI] = ACTIONS(854), + [anon_sym_PIPE_AMP] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_AMP_GT] = ACTIONS(1493), + [anon_sym_AMP_GT_GT] = ACTIONS(1493), + [anon_sym_LT_AMP] = ACTIONS(1493), + [anon_sym_GT_AMP] = ACTIONS(1493), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(856), - [anon_sym_LF] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LF] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(854), }, [487] = { [sym_concatenation] = STATE(517), @@ -17053,37 +17087,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(774), [sym_command_substitution] = STATE(774), [sym_process_substitution] = STATE(774), - [sym_word] = ACTIONS(1497), - [sym__empty_value] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_raw_string] = ACTIONS(1497), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(974), - [anon_sym_GT_LPAREN] = ACTIONS(974), + [sym_word] = ACTIONS(1495), + [sym__empty_value] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(1495), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(968), + [anon_sym_BQUOTE] = ACTIONS(970), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1497), }, [488] = { [sym_variable_assignment] = STATE(77), [sym_subscript] = STATE(219), [aux_sym_declaration_command_repeat1] = STATE(488), - [sym_word] = ACTIONS(978), - [sym_variable_name] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_SEMI_SEMI] = ACTIONS(984), - [anon_sym_PIPE_AMP] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(984), + [sym_word] = ACTIONS(976), + [sym_variable_name] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_SEMI_SEMI] = ACTIONS(982), + [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LF] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_LF] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), }, [489] = { [sym_compound_statement] = STATE(776), @@ -17091,39 +17125,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(50), }, [490] = { - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_SEMI_SEMI] = ACTIONS(1504), - [anon_sym_PIPE_AMP] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_SEMI_SEMI] = ACTIONS(1502), + [anon_sym_PIPE_AMP] = ACTIONS(1502), + [anon_sym_AMP_AMP] = ACTIONS(1502), + [anon_sym_PIPE_PIPE] = ACTIONS(1502), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LF] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_LF] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), }, [491] = { [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), [anon_sym_PIPE_AMP] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), }, [492] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1218), + [anon_sym_SEMI_SEMI] = ACTIONS(1218), [anon_sym_PIPE_AMP] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1218), [anon_sym_LT] = ACTIONS(264), [anon_sym_GT] = ACTIONS(264), [anon_sym_GT_GT] = ACTIONS(264), @@ -17141,9 +17175,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), }, [493] = { [sym_concatenation] = STATE(642), @@ -17152,65 +17186,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(777), [sym_command_substitution] = STATE(777), [sym_process_substitution] = STATE(777), - [sym_word] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(614), - [sym_raw_string] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_word] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(612), + [sym_raw_string] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1506), }, [494] = { [aux_sym_concatenation_repeat1] = STATE(779), [sym_file_descriptor] = ACTIONS(424), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_LT_LT_DASH] = ACTIONS(1228), + [sym__concat] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_AMP_GT] = ACTIONS(1226), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1226), + [anon_sym_GT_AMP] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [495] = { [aux_sym_concatenation_repeat1] = STATE(780), [sym_file_descriptor] = ACTIONS(442), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [sym__concat] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_SEMI_SEMI] = ACTIONS(1240), + [anon_sym_PIPE_AMP] = ACTIONS(1240), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_GT_GT] = ACTIONS(1240), + [anon_sym_AMP_GT] = ACTIONS(1240), + [anon_sym_AMP_GT_GT] = ACTIONS(1240), + [anon_sym_LT_AMP] = ACTIONS(1240), + [anon_sym_GT_AMP] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1240), + [anon_sym_LT_LT_DASH] = ACTIONS(1240), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LF] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), }, [496] = { [sym_concatenation] = STATE(152), @@ -17220,48 +17254,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(228), [sym_process_substitution] = STATE(228), [aux_sym_for_statement_repeat1] = STATE(496), - [sym_file_descriptor] = ACTIONS(929), - [sym_word] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_SEMI_SEMI] = ACTIONS(1263), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [anon_sym_AMP_GT] = ACTIONS(1263), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_raw_string] = ACTIONS(1513), - [anon_sym_DOLLAR] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1283), - [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_file_descriptor] = ACTIONS(927), + [sym_word] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1511), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), }, [497] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(498), [sym_file_descriptor] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_RPAREN] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1289), - [anon_sym_PIPE_AMP] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1289), - [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1287), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1287), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(380), [anon_sym_GT_GT] = ACTIONS(380), @@ -17272,70 +17306,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(244), [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), }, [498] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(498), - [sym_file_descriptor] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_AMP_GT] = ACTIONS(1522), - [anon_sym_AMP_GT_GT] = ACTIONS(1522), - [anon_sym_LT_AMP] = ACTIONS(1522), - [anon_sym_GT_AMP] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1299), - [anon_sym_LT_LT_DASH] = ACTIONS(1299), + [sym_file_descriptor] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_SEMI_SEMI] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1292), + [anon_sym_PIPE_PIPE] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_AMP_GT] = ACTIONS(1520), + [anon_sym_AMP_GT_GT] = ACTIONS(1520), + [anon_sym_LT_AMP] = ACTIONS(1520), + [anon_sym_GT_AMP] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1297), + [anon_sym_LT_LT_DASH] = ACTIONS(1297), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_LF] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), }, [499] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [500] = { [sym_file_redirect] = STATE(151), @@ -17350,12 +17384,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_command_repeat2] = STATE(782), [sym_file_descriptor] = ACTIONS(376), [sym_word] = ACTIONS(378), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_RPAREN] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1289), - [anon_sym_PIPE_AMP] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1289), - [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1287), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1287), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(380), [anon_sym_GT_GT] = ACTIONS(380), @@ -17375,106 +17409,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(258), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_LF] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LF] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), }, [501] = { - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(1527), - [anon_sym_RBRACK_RBRACK] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_RBRACK_RBRACK] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [502] = { - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_RBRACK] = ACTIONS(1529), - [anon_sym_RBRACK_RBRACK] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1527), }, [503] = { [aux_sym_concatenation_repeat1] = STATE(503), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1531), - [anon_sym_RBRACK] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1529), + [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [504] = { - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_RBRACK] = ACTIONS(1534), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [anon_sym_GT_LPAREN] = ACTIONS(1035), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1532), }, [505] = { - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1536), [sym_comment] = ACTIONS(50), }, [506] = { - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1540), [sym_comment] = ACTIONS(50), }, [507] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_RBRACK] = ACTIONS(1544), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_raw_string] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1064), + [anon_sym_GT_LPAREN] = ACTIONS(1064), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1542), }, [508] = { - [anon_sym_AT] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1544), [sym_comment] = ACTIONS(50), }, [509] = { @@ -17484,10 +17518,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(788), [sym_command_substitution] = STATE(788), [sym_process_substitution] = STATE(788), - [sym_word] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1550), + [sym_word] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1548), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1548), + [sym_raw_string] = ACTIONS(1546), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -17495,27 +17529,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1550), }, [510] = { - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1554), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), - [anon_sym_LT_LPAREN] = ACTIONS(1078), - [anon_sym_GT_LPAREN] = ACTIONS(1078), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_raw_string] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1076), + [anon_sym_GT_LPAREN] = ACTIONS(1076), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1552), }, [511] = { - [anon_sym_AT] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1554), [sym_comment] = ACTIONS(50), }, [512] = { @@ -17525,10 +17559,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(793), [sym_command_substitution] = STATE(793), [sym_process_substitution] = STATE(793), - [sym_word] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1540), + [sym_word] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1538), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1558), + [sym_raw_string] = ACTIONS(1556), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -17536,88 +17570,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1558), }, [513] = { - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(1162), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_raw_string] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_LT_LPAREN] = ACTIONS(1160), + [anon_sym_GT_LPAREN] = ACTIONS(1160), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1560), + }, + [514] = { + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), [anon_sym_RBRACK] = ACTIONS(1562), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_raw_string] = ACTIONS(1162), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_raw_string] = ACTIONS(1212), [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), - [anon_sym_LT_LPAREN] = ACTIONS(1162), - [anon_sym_GT_LPAREN] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1212), + [anon_sym_GT_LPAREN] = ACTIONS(1212), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(1562), }, - [514] = { - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_raw_string] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1214), - [anon_sym_GT_LPAREN] = ACTIONS(1214), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1564), - }, [515] = { [aux_sym_concatenation_repeat1] = STATE(515), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1531), - [anon_sym_RBRACK_RBRACK] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1529), + [anon_sym_RBRACK_RBRACK] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [516] = { [aux_sym_concatenation_repeat1] = STATE(797), - [sym_word] = ACTIONS(760), - [sym__concat] = ACTIONS(1566), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), + [sym_word] = ACTIONS(758), + [sym__concat] = ACTIONS(1564), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_PIPE_AMP] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), }, [517] = { - [sym_word] = ACTIONS(760), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), + [sym_word] = ACTIONS(758), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_PIPE_AMP] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), }, [518] = { [sym_concatenation] = STATE(72), @@ -17627,10 +17661,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(799), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(1568), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(1566), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -17638,14 +17672,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [519] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(801), - [anon_sym_DQUOTE] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1568), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -17655,25 +17689,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [520] = { [sym_special_variable_name] = STATE(804), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_AT] = ACTIONS(1570), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_0] = ACTIONS(1576), - [anon_sym__] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_QMARK] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_0] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), }, [521] = { [sym_special_variable_name] = STATE(807), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1578), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -17854,168 +17888,168 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [525] = { [aux_sym_concatenation_repeat1] = STATE(814), - [sym_word] = ACTIONS(784), - [sym__concat] = ACTIONS(1566), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(786), - [anon_sym_SEMI_SEMI] = ACTIONS(786), - [anon_sym_PIPE_AMP] = ACTIONS(786), - [anon_sym_AMP_AMP] = ACTIONS(786), - [anon_sym_PIPE_PIPE] = ACTIONS(786), + [sym_word] = ACTIONS(782), + [sym__concat] = ACTIONS(1564), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_SEMI_SEMI] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_LF] = ACTIONS(786), - [anon_sym_AMP] = ACTIONS(786), + [sym_identifier] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), }, [526] = { - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [527] = { - [sym_file_descriptor] = ACTIONS(735), - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [sym_variable_name] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1527), }, [528] = { [aux_sym_concatenation_repeat1] = STATE(528), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1580), + [sym_variable_name] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [529] = { - [sym_file_descriptor] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1534), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_file_descriptor] = ACTIONS(1035), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1532), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [anon_sym_GT_LPAREN] = ACTIONS(1035), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1532), }, [530] = { - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1585), [sym_comment] = ACTIONS(50), }, [531] = { - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), [sym_comment] = ACTIONS(50), }, [532] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1544), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_file_descriptor] = ACTIONS(1064), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [sym_variable_name] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_PIPE_AMP] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1064), + [anon_sym_AMP_GT] = ACTIONS(1542), + [anon_sym_AMP_GT_GT] = ACTIONS(1064), + [anon_sym_LT_AMP] = ACTIONS(1064), + [anon_sym_GT_AMP] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_raw_string] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1064), + [anon_sym_GT_LPAREN] = ACTIONS(1064), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1542), }, [533] = { - [anon_sym_AT] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), [sym_comment] = ACTIONS(50), }, [534] = { @@ -18025,10 +18059,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(820), [sym_command_substitution] = STATE(820), [sym_process_substitution] = STATE(820), - [sym_word] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1597), + [sym_word] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1595), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1595), + [sym_raw_string] = ACTIONS(1593), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -18036,38 +18070,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1597), }, [535] = { - [sym_file_descriptor] = ACTIONS(1078), - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [sym_variable_name] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1554), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_AMP_GT] = ACTIONS(1554), - [anon_sym_AMP_GT_GT] = ACTIONS(1078), - [anon_sym_LT_AMP] = ACTIONS(1078), - [anon_sym_GT_AMP] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), - [anon_sym_LT_LPAREN] = ACTIONS(1078), - [anon_sym_GT_LPAREN] = ACTIONS(1078), + [sym_file_descriptor] = ACTIONS(1076), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [sym_variable_name] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1552), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_raw_string] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1076), + [anon_sym_GT_LPAREN] = ACTIONS(1076), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1552), }, [536] = { - [anon_sym_AT] = ACTIONS(1601), + [anon_sym_AT] = ACTIONS(1599), [sym_comment] = ACTIONS(50), }, [537] = { @@ -18077,10 +18111,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(825), [sym_command_substitution] = STATE(825), [sym_process_substitution] = STATE(825), - [sym_word] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1589), + [sym_word] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1587), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1603), + [sym_raw_string] = ACTIONS(1601), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -18088,85 +18122,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1603), }, [538] = { - [sym_file_descriptor] = ACTIONS(1162), - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [sym_variable_name] = ACTIONS(1162), + [sym_file_descriptor] = ACTIONS(1160), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [sym_variable_name] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1560), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_raw_string] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_LT_LPAREN] = ACTIONS(1160), + [anon_sym_GT_LPAREN] = ACTIONS(1160), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1560), + }, + [539] = { + [sym_file_descriptor] = ACTIONS(1212), + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [sym_variable_name] = ACTIONS(1212), [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_PIPE_AMP] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_PIPE_AMP] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), [anon_sym_LT] = ACTIONS(1562), [anon_sym_GT] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1212), [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1162), - [anon_sym_LT_AMP] = ACTIONS(1162), - [anon_sym_GT_AMP] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_raw_string] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1212), + [anon_sym_LT_AMP] = ACTIONS(1212), + [anon_sym_GT_AMP] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_raw_string] = ACTIONS(1212), [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), - [anon_sym_LT_LPAREN] = ACTIONS(1162), - [anon_sym_GT_LPAREN] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1212), + [anon_sym_GT_LPAREN] = ACTIONS(1212), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(1562), }, - [539] = { - [sym_file_descriptor] = ACTIONS(1214), - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym_variable_name] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1214), - [anon_sym_AMP_GT] = ACTIONS(1564), - [anon_sym_AMP_GT_GT] = ACTIONS(1214), - [anon_sym_LT_AMP] = ACTIONS(1214), - [anon_sym_GT_AMP] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_raw_string] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1214), - [anon_sym_GT_LPAREN] = ACTIONS(1214), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1564), - }, [540] = { - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), [sym_comment] = ACTIONS(50), }, [541] = { - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1611), [sym_comment] = ACTIONS(50), }, [542] = { - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__string_content] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__string_content] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), [sym_comment] = ACTIONS(64), }, [543] = { - [anon_sym_AT] = ACTIONS(1615), + [anon_sym_AT] = ACTIONS(1613), [sym_comment] = ACTIONS(50), }, [544] = { @@ -18176,10 +18210,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(833), [sym_command_substitution] = STATE(833), [sym_process_substitution] = STATE(833), - [sym_word] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1619), + [sym_word] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1617), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1617), + [sym_raw_string] = ACTIONS(1615), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -18187,19 +18221,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1621), + [sym_identifier] = ACTIONS(1619), }, [545] = { - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__string_content] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__string_content] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), [sym_comment] = ACTIONS(64), }, [546] = { - [anon_sym_AT] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(1621), [sym_comment] = ACTIONS(50), }, [547] = { @@ -18209,10 +18243,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(838), [sym_command_substitution] = STATE(838), [sym_process_substitution] = STATE(838), - [sym_word] = ACTIONS(1625), - [anon_sym_RBRACE] = ACTIONS(1611), + [sym_word] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1609), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1625), + [sym_raw_string] = ACTIONS(1623), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -18220,309 +18254,309 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1627), + [sym_identifier] = ACTIONS(1625), }, [548] = { - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym__string_content] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym__string_content] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), [sym_comment] = ACTIONS(64), }, [549] = { - [sym_file_descriptor] = ACTIONS(1629), - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), - [anon_sym_PIPE_AMP] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_PIPE_PIPE] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1631), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_AMP_GT] = ACTIONS(1631), - [anon_sym_AMP_GT_GT] = ACTIONS(1631), - [anon_sym_LT_AMP] = ACTIONS(1631), - [anon_sym_GT_AMP] = ACTIONS(1631), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LT_LT_DASH] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_raw_string] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [anon_sym_LT_LPAREN] = ACTIONS(1631), - [anon_sym_GT_LPAREN] = ACTIONS(1631), + [sym_file_descriptor] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(1629), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(1629), + [anon_sym_LT_LT_DASH] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [550] = { - [anon_sym_AT] = ACTIONS(1633), + [anon_sym_AT] = ACTIONS(1631), [sym_comment] = ACTIONS(50), }, [551] = { - [sym_file_descriptor] = ACTIONS(1635), - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), - [anon_sym_PIPE_AMP] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1637), - [anon_sym_PIPE_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1637), - [anon_sym_AMP_GT] = ACTIONS(1637), - [anon_sym_AMP_GT_GT] = ACTIONS(1637), - [anon_sym_LT_AMP] = ACTIONS(1637), - [anon_sym_GT_AMP] = ACTIONS(1637), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_LT_LT_DASH] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym_raw_string] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1637), - [anon_sym_LT_LPAREN] = ACTIONS(1637), - [anon_sym_GT_LPAREN] = ACTIONS(1637), + [sym_file_descriptor] = ACTIONS(1633), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_AMP_GT] = ACTIONS(1635), + [anon_sym_AMP_GT_GT] = ACTIONS(1635), + [anon_sym_LT_AMP] = ACTIONS(1635), + [anon_sym_GT_AMP] = ACTIONS(1635), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_LT_LT_DASH] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_raw_string] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(1635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), }, [552] = { - [anon_sym_AT] = ACTIONS(1639), + [anon_sym_AT] = ACTIONS(1637), [sym_comment] = ACTIONS(50), }, [553] = { - [anon_sym_RBRACK] = ACTIONS(1641), + [anon_sym_RBRACK] = ACTIONS(1639), [sym_comment] = ACTIONS(50), }, [554] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1645), + [sym__concat] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(50), }, [555] = { - [sym_file_descriptor] = ACTIONS(1647), - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), - [anon_sym_PIPE_AMP] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1649), - [anon_sym_AMP_GT] = ACTIONS(1649), - [anon_sym_AMP_GT_GT] = ACTIONS(1649), - [anon_sym_LT_AMP] = ACTIONS(1649), - [anon_sym_GT_AMP] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_LT_LT_DASH] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_raw_string] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), - [anon_sym_BQUOTE] = ACTIONS(1649), - [anon_sym_LT_LPAREN] = ACTIONS(1649), - [anon_sym_GT_LPAREN] = ACTIONS(1649), + [sym_file_descriptor] = ACTIONS(1645), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_GT_GT] = ACTIONS(1647), + [anon_sym_AMP_GT] = ACTIONS(1647), + [anon_sym_AMP_GT_GT] = ACTIONS(1647), + [anon_sym_LT_AMP] = ACTIONS(1647), + [anon_sym_GT_AMP] = ACTIONS(1647), + [anon_sym_LT_LT] = ACTIONS(1647), + [anon_sym_LT_LT_DASH] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), }, [556] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1653), + [sym__concat] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(1651), [sym_comment] = ACTIONS(50), }, [557] = { - [sym__concat] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1645), + [sym__concat] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1643), [sym_comment] = ACTIONS(50), }, [558] = { - [anon_sym_RBRACK] = ACTIONS(1655), + [anon_sym_RBRACK] = ACTIONS(1653), [sym_comment] = ACTIONS(50), }, [559] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1657), [sym_comment] = ACTIONS(50), }, [560] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1663), + [sym__concat] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1661), [sym_comment] = ACTIONS(50), }, [561] = { - [sym__concat] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1659), + [sym__concat] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1657), [sym_comment] = ACTIONS(50), }, [562] = { - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [563] = { - [sym_file_descriptor] = ACTIONS(735), - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_LT_LT_DASH] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(735), - [sym_raw_string] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), - [anon_sym_LT_LPAREN] = ACTIONS(735), - [anon_sym_GT_LPAREN] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [sym_raw_string] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(733), + [anon_sym_GT_LPAREN] = ACTIONS(733), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1527), }, [564] = { [aux_sym_concatenation_repeat1] = STATE(564), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [565] = { [aux_sym_concatenation_repeat1] = STATE(855), - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1668), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(760), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(758), + [anon_sym_LT_AMP] = ACTIONS(758), + [anon_sym_GT_AMP] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym_raw_string] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(758), + [anon_sym_GT_LPAREN] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [566] = { - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1668), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(760), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(758), + [anon_sym_LT_AMP] = ACTIONS(758), + [anon_sym_GT_AMP] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym_raw_string] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(758), + [anon_sym_GT_LPAREN] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [567] = { [sym_concatenation] = STATE(72), @@ -18532,10 +18566,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(857), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(1670), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(1668), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -18543,36 +18577,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [568] = { [aux_sym_concatenation_repeat1] = STATE(858), - [sym_file_descriptor] = ACTIONS(784), - [sym_word] = ACTIONS(784), + [sym_file_descriptor] = ACTIONS(782), + [sym_word] = ACTIONS(782), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_PIPE_AMP] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(1672), - [anon_sym_AMP_GT_GT] = ACTIONS(784), - [anon_sym_LT_AMP] = ACTIONS(784), - [anon_sym_GT_AMP] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP_AMP] = ACTIONS(782), + [anon_sym_PIPE_PIPE] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_GT_GT] = ACTIONS(782), + [anon_sym_AMP_GT] = ACTIONS(1670), + [anon_sym_AMP_GT_GT] = ACTIONS(782), + [anon_sym_LT_AMP] = ACTIONS(782), + [anon_sym_GT_AMP] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(782), + [sym_raw_string] = ACTIONS(782), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), + [anon_sym_BQUOTE] = ACTIONS(782), + [anon_sym_LT_LPAREN] = ACTIONS(782), + [anon_sym_GT_LPAREN] = ACTIONS(782), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1670), }, [569] = { [sym_concatenation] = STATE(441), @@ -18582,17 +18616,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(433), [sym_process_substitution] = STATE(433), [aux_sym_for_statement_repeat1] = STATE(859), - [sym_word] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [sym_word] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym_raw_string] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(798), + [anon_sym_GT_LPAREN] = ACTIONS(798), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(802), + [sym_identifier] = ACTIONS(800), }, [570] = { [sym__terminated_statement] = STATE(444), @@ -18624,7 +18658,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1674), + [anon_sym_done] = ACTIONS(1672), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -18655,12 +18689,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [571] = { - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1678), - [anon_sym_PIPE_AMP] = ACTIONS(1678), - [anon_sym_AMP_AMP] = ACTIONS(1678), - [anon_sym_PIPE_PIPE] = ACTIONS(1678), - [anon_sym_BQUOTE] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_PIPE_AMP] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1676), + [anon_sym_PIPE_PIPE] = ACTIONS(1676), + [anon_sym_BQUOTE] = ACTIONS(1676), [sym_comment] = ACTIONS(50), }, [572] = { @@ -18697,9 +18731,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1680), - [anon_sym_elif] = ACTIONS(810), - [anon_sym_else] = ACTIONS(812), + [anon_sym_fi] = ACTIONS(1678), + [anon_sym_elif] = ACTIONS(808), + [anon_sym_else] = ACTIONS(810), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -18729,29 +18763,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [573] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1682), + [anon_sym_SEMI_SEMI] = ACTIONS(1680), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LF] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_LF] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), }, [574] = { - [anon_sym_in] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), [sym_comment] = ACTIONS(50), }, [575] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1686), + [anon_sym_SEMI_SEMI] = ACTIONS(1684), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_LF] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_LF] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), }, [576] = { - [anon_sym_in] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1686), [sym_comment] = ACTIONS(50), }, [577] = { - [anon_sym_RPAREN] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1688), [sym_comment] = ACTIONS(50), }, [578] = { @@ -18788,7 +18822,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1690), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -18816,85 +18850,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [579] = { [sym_file_redirect] = STATE(875), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_PIPE_AMP] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1700), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1700), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_PIPE_AMP] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1700), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1700), + [anon_sym_LT_AMP] = ACTIONS(1700), + [anon_sym_GT_AMP] = ACTIONS(1700), [sym_comment] = ACTIONS(50), }, [580] = { - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_PIPE_AMP] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1706), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_BQUOTE] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_PIPE_AMP] = ACTIONS(1704), + [anon_sym_AMP_AMP] = ACTIONS(1704), + [anon_sym_PIPE_PIPE] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), [sym_comment] = ACTIONS(50), }, [581] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [582] = { [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_SEMI_SEMI] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1710), [anon_sym_PIPE_AMP] = ACTIONS(368), [anon_sym_AMP_AMP] = ACTIONS(374), [anon_sym_PIPE_PIPE] = ACTIONS(374), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_LF] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), }, [583] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_SEMI_SEMI] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_SEMI_SEMI] = ACTIONS(1710), [anon_sym_PIPE_AMP] = ACTIONS(368), [anon_sym_AMP_AMP] = ACTIONS(374), [anon_sym_PIPE_PIPE] = ACTIONS(374), @@ -18915,17 +18949,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_LF] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), }, [584] = { - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_PIPE_AMP] = ACTIONS(1716), - [anon_sym_AMP_AMP] = ACTIONS(1716), - [anon_sym_PIPE_PIPE] = ACTIONS(1716), - [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_PIPE_AMP] = ACTIONS(1714), + [anon_sym_AMP_AMP] = ACTIONS(1714), + [anon_sym_PIPE_PIPE] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), [sym_comment] = ACTIONS(50), }, [585] = { @@ -18936,116 +18970,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(878), [sym_command_substitution] = STATE(878), [sym_process_substitution] = STATE(878), - [sym_word] = ACTIONS(1718), - [sym__empty_value] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_raw_string] = ACTIONS(1718), - [anon_sym_DOLLAR] = ACTIONS(1726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1732), - [anon_sym_LT_LPAREN] = ACTIONS(1734), - [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_word] = ACTIONS(1716), + [sym__empty_value] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1722), + [sym_raw_string] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1734), }, [586] = { [sym_word] = ACTIONS(322), [sym_variable_name] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1098), [anon_sym_RPAREN] = ACTIONS(322), [anon_sym_PIPE_AMP] = ACTIONS(322), [anon_sym_AMP_AMP] = ACTIONS(322), [anon_sym_PIPE_PIPE] = ACTIONS(322), [anon_sym_BQUOTE] = ACTIONS(322), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1098), }, [587] = { [sym_variable_assignment] = STATE(316), [sym_subscript] = STATE(319), [aux_sym_declaration_command_repeat1] = STATE(587), - [sym_word] = ACTIONS(1738), - [sym_variable_name] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [sym_word] = ACTIONS(1736), + [sym_variable_name] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_PIPE_AMP] = ACTIONS(1744), + [anon_sym_AMP_AMP] = ACTIONS(1744), + [anon_sym_PIPE_PIPE] = ACTIONS(1744), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1746), }, [588] = { - [sym_file_descriptor] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1534), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1534), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [sym_raw_string] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_LT_LPAREN] = ACTIONS(1037), - [anon_sym_GT_LPAREN] = ACTIONS(1037), + [sym_file_descriptor] = ACTIONS(1035), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1532), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1532), + [anon_sym_LT_LT_DASH] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [sym_raw_string] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LT_LPAREN] = ACTIONS(1035), + [anon_sym_GT_LPAREN] = ACTIONS(1035), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1532), }, [589] = { - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1751), [sym_comment] = ACTIONS(50), }, [590] = { - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1755), [sym_comment] = ACTIONS(50), }, [591] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1544), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_LT_LT_DASH] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_file_descriptor] = ACTIONS(1064), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_PIPE_AMP] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1064), + [anon_sym_AMP_GT] = ACTIONS(1542), + [anon_sym_AMP_GT_GT] = ACTIONS(1064), + [anon_sym_LT_AMP] = ACTIONS(1064), + [anon_sym_GT_AMP] = ACTIONS(1064), + [anon_sym_LT_LT] = ACTIONS(1542), + [anon_sym_LT_LT_DASH] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym_raw_string] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1064), + [anon_sym_GT_LPAREN] = ACTIONS(1064), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1542), }, [592] = { - [anon_sym_AT] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), [sym_comment] = ACTIONS(50), }, [593] = { @@ -19055,10 +19089,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(893), [sym_command_substitution] = STATE(893), [sym_process_substitution] = STATE(893), - [sym_word] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1763), + [sym_word] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1761), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1761), + [sym_raw_string] = ACTIONS(1759), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -19066,39 +19100,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1763), }, [594] = { - [sym_file_descriptor] = ACTIONS(1078), - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1554), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_AMP_GT] = ACTIONS(1554), - [anon_sym_AMP_GT_GT] = ACTIONS(1078), - [anon_sym_LT_AMP] = ACTIONS(1078), - [anon_sym_GT_AMP] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1554), - [anon_sym_LT_LT_DASH] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), - [anon_sym_LT_LPAREN] = ACTIONS(1078), - [anon_sym_GT_LPAREN] = ACTIONS(1078), + [sym_file_descriptor] = ACTIONS(1076), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1552), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1552), + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym_raw_string] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), + [anon_sym_LT_LPAREN] = ACTIONS(1076), + [anon_sym_GT_LPAREN] = ACTIONS(1076), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1552), }, [595] = { - [anon_sym_AT] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1765), [sym_comment] = ACTIONS(50), }, [596] = { @@ -19108,10 +19142,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(898), [sym_command_substitution] = STATE(898), [sym_process_substitution] = STATE(898), - [sym_word] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1755), + [sym_word] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1753), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1769), + [sym_raw_string] = ACTIONS(1767), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -19119,89 +19153,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1769), }, [597] = { - [sym_file_descriptor] = ACTIONS(1162), - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), + [sym_file_descriptor] = ACTIONS(1160), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1560), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1560), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_raw_string] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [anon_sym_LT_LPAREN] = ACTIONS(1160), + [anon_sym_GT_LPAREN] = ACTIONS(1160), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1560), + }, + [598] = { + [sym_file_descriptor] = ACTIONS(1212), + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_PIPE_AMP] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_PIPE_AMP] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), [anon_sym_LT] = ACTIONS(1562), [anon_sym_GT] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1212), [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1162), - [anon_sym_LT_AMP] = ACTIONS(1162), - [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1212), + [anon_sym_LT_AMP] = ACTIONS(1212), + [anon_sym_GT_AMP] = ACTIONS(1212), [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_raw_string] = ACTIONS(1162), + [anon_sym_LT_LT_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_raw_string] = ACTIONS(1212), [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), - [anon_sym_LT_LPAREN] = ACTIONS(1162), - [anon_sym_GT_LPAREN] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_LT_LPAREN] = ACTIONS(1212), + [anon_sym_GT_LPAREN] = ACTIONS(1212), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(1562), }, - [598] = { - [sym_file_descriptor] = ACTIONS(1214), - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1214), - [anon_sym_AMP_GT] = ACTIONS(1564), - [anon_sym_AMP_GT_GT] = ACTIONS(1214), - [anon_sym_LT_AMP] = ACTIONS(1214), - [anon_sym_GT_AMP] = ACTIONS(1214), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_LT_LT_DASH] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_raw_string] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1214), - [anon_sym_GT_LPAREN] = ACTIONS(1214), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1564), - }, [599] = { [sym_compound_statement] = STATE(901), - [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), [sym_comment] = ACTIONS(50), }, [600] = { - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_PIPE_AMP] = ACTIONS(1775), - [anon_sym_AMP_AMP] = ACTIONS(1775), - [anon_sym_PIPE_PIPE] = ACTIONS(1775), - [anon_sym_BQUOTE] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_PIPE_AMP] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1773), + [anon_sym_PIPE_PIPE] = ACTIONS(1773), + [anon_sym_BQUOTE] = ACTIONS(1773), [sym_comment] = ACTIONS(50), }, [601] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_PIPE_AMP] = ACTIONS(1775), - [anon_sym_AMP_AMP] = ACTIONS(1775), - [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_PIPE_AMP] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1773), + [anon_sym_PIPE_PIPE] = ACTIONS(1773), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -19221,22 +19255,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [602] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), [sym_comment] = ACTIONS(50), }, [603] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -19262,22 +19296,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(902), [sym_command_substitution] = STATE(902), [sym_process_substitution] = STATE(902), - [sym_word] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_raw_string] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1182), - [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_word] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1170), + [sym_raw_string] = ACTIONS(1777), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LT_LPAREN] = ACTIONS(1180), + [anon_sym_GT_LPAREN] = ACTIONS(1180), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1779), }, [605] = { [aux_sym_concatenation_repeat1] = STATE(906), [sym_file_descriptor] = ACTIONS(424), - [sym__concat] = ACTIONS(1783), + [sym__concat] = ACTIONS(1781), [anon_sym_PIPE] = ACTIONS(428), [anon_sym_RPAREN] = ACTIONS(424), [anon_sym_PIPE_AMP] = ACTIONS(424), @@ -19299,7 +19333,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(908), - [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1783), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -19309,25 +19343,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [607] = { [sym_special_variable_name] = STATE(911), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_AT] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1785), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_QMARK] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_0] = ACTIONS(1791), - [anon_sym__] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_QMARK] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_0] = ACTIONS(1789), + [anon_sym__] = ACTIONS(1789), }, [608] = { [sym_special_variable_name] = STATE(914), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1791), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1793), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -19509,7 +19543,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [612] = { [aux_sym_concatenation_repeat1] = STATE(921), [sym_file_descriptor] = ACTIONS(442), - [sym__concat] = ACTIONS(1783), + [sym__concat] = ACTIONS(1781), [anon_sym_PIPE] = ACTIONS(444), [anon_sym_RPAREN] = ACTIONS(442), [anon_sym_PIPE_AMP] = ACTIONS(442), @@ -19546,51 +19580,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(50), }, [614] = { - [sym_file_descriptor] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1244), - [anon_sym_AMP_GT] = ACTIONS(1797), - [anon_sym_AMP_GT_GT] = ACTIONS(1244), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_LT_LT_DASH] = ACTIONS(1244), - [anon_sym_BQUOTE] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_RPAREN] = ACTIONS(1242), + [anon_sym_PIPE_AMP] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_GT] = ACTIONS(1795), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_AMP_GT] = ACTIONS(1795), + [anon_sym_AMP_GT_GT] = ACTIONS(1242), + [anon_sym_LT_AMP] = ACTIONS(1242), + [anon_sym_GT_AMP] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1795), + [anon_sym_LT_LT_DASH] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), [sym_comment] = ACTIONS(50), }, [615] = { [sym_simple_expansion] = STATE(660), [sym_expansion] = STATE(660), [aux_sym_heredoc_repeat1] = STATE(923), - [sym__heredoc_middle] = ACTIONS(1248), - [sym__heredoc_end] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym__heredoc_middle] = ACTIONS(1246), + [sym__heredoc_end] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), [sym_comment] = ACTIONS(50), }, [616] = { - [sym_file_descriptor] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1801), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1254), + [anon_sym_PIPE_AMP] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PIPE_PIPE] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1254), + [anon_sym_AMP_GT] = ACTIONS(1799), + [anon_sym_AMP_GT_GT] = ACTIONS(1254), + [anon_sym_LT_AMP] = ACTIONS(1254), + [anon_sym_GT_AMP] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1799), + [anon_sym_LT_LT_DASH] = ACTIONS(1254), + [anon_sym_BQUOTE] = ACTIONS(1254), [sym_comment] = ACTIONS(50), }, [617] = { @@ -19601,73 +19635,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(341), [sym_process_substitution] = STATE(341), [aux_sym_for_statement_repeat1] = STATE(617), - [sym_file_descriptor] = ACTIONS(929), - [sym_word] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_PIPE_AMP] = ACTIONS(929), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1806), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AMP_GT] = ACTIONS(1806), - [anon_sym_AMP_GT_GT] = ACTIONS(929), - [anon_sym_LT_AMP] = ACTIONS(929), - [anon_sym_GT_AMP] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(1806), - [anon_sym_LT_LT_DASH] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym_raw_string] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1817), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(927), + [sym_word] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_GT] = ACTIONS(1804), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(1804), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(1804), + [anon_sym_LT_LT_DASH] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1821), + [anon_sym_GT_LPAREN] = ACTIONS(1821), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1824), }, [618] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(619), - [sym_file_descriptor] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_PIPE_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [sym_comment] = ACTIONS(50), }, [619] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(619), - [sym_file_descriptor] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_AMP_GT] = ACTIONS(1840), - [anon_sym_AMP_GT_GT] = ACTIONS(1843), - [anon_sym_LT_AMP] = ACTIONS(1843), - [anon_sym_GT_AMP] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_LT_LT_DASH] = ACTIONS(1849), + [sym_file_descriptor] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_PIPE_AMP] = ACTIONS(1836), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_GT] = ACTIONS(1838), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_AMP_GT] = ACTIONS(1838), + [anon_sym_AMP_GT_GT] = ACTIONS(1841), + [anon_sym_LT_AMP] = ACTIONS(1841), + [anon_sym_GT_AMP] = ACTIONS(1841), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_LT_LT_DASH] = ACTIONS(1847), [sym_comment] = ACTIONS(50), }, [620] = { @@ -19681,24 +19715,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(341), [aux_sym_for_statement_repeat1] = STATE(617), [aux_sym_command_repeat2] = STATE(924), - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_PIPE_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [sym_word] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(548), + [sym_raw_string] = ACTIONS(546), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), @@ -19706,112 +19740,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(562), + [sym_identifier] = ACTIONS(560), }, [621] = { [aux_sym_concatenation_repeat1] = STATE(621), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [622] = { [aux_sym_concatenation_repeat1] = STATE(925), - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1668), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(760), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(758), + [anon_sym_LT_AMP] = ACTIONS(758), + [anon_sym_GT_AMP] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym_raw_string] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(758), + [anon_sym_GT_LPAREN] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [623] = { [aux_sym_concatenation_repeat1] = STATE(926), - [sym_file_descriptor] = ACTIONS(784), - [sym_word] = ACTIONS(784), + [sym_file_descriptor] = ACTIONS(782), + [sym_word] = ACTIONS(782), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(1672), - [anon_sym_AMP_GT_GT] = ACTIONS(784), - [anon_sym_LT_AMP] = ACTIONS(784), - [anon_sym_GT_AMP] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP_AMP] = ACTIONS(782), + [anon_sym_PIPE_PIPE] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_GT_GT] = ACTIONS(782), + [anon_sym_AMP_GT] = ACTIONS(1670), + [anon_sym_AMP_GT_GT] = ACTIONS(782), + [anon_sym_LT_AMP] = ACTIONS(782), + [anon_sym_GT_AMP] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(782), + [sym_raw_string] = ACTIONS(782), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), + [anon_sym_BQUOTE] = ACTIONS(782), + [anon_sym_LT_LPAREN] = ACTIONS(782), + [anon_sym_GT_LPAREN] = ACTIONS(782), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1670), }, [624] = { - [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1850), [sym_comment] = ACTIONS(50), }, [625] = { [sym_file_redirect] = STATE(875), - [sym_file_descriptor] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PIPE_AMP] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_GT] = ACTIONS(1856), - [anon_sym_GT_GT] = ACTIONS(1858), - [anon_sym_AMP_GT] = ACTIONS(1856), - [anon_sym_AMP_GT_GT] = ACTIONS(1858), - [anon_sym_LT_AMP] = ACTIONS(1858), - [anon_sym_GT_AMP] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1698), + [sym_file_descriptor] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_PIPE_AMP] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_GT] = ACTIONS(1856), + [anon_sym_AMP_GT] = ACTIONS(1854), + [anon_sym_AMP_GT_GT] = ACTIONS(1856), + [anon_sym_LT_AMP] = ACTIONS(1856), + [anon_sym_GT_AMP] = ACTIONS(1856), + [anon_sym_BQUOTE] = ACTIONS(1696), [sym_comment] = ACTIONS(50), }, [626] = { @@ -19822,47 +19856,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(930), [sym_command_substitution] = STATE(930), [sym_process_substitution] = STATE(930), - [sym_word] = ACTIONS(1860), - [sym__empty_value] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_raw_string] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1732), - [anon_sym_LT_LPAREN] = ACTIONS(1734), - [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_word] = ACTIONS(1858), + [sym__empty_value] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1722), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1860), }, [627] = { [sym_variable_assignment] = STATE(316), [sym_subscript] = STATE(355), [aux_sym_declaration_command_repeat1] = STATE(627), - [sym_word] = ACTIONS(1738), - [sym_variable_name] = ACTIONS(1864), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_word] = ACTIONS(1736), + [sym_variable_name] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PIPE_AMP] = ACTIONS(1744), + [anon_sym_AMP_AMP] = ACTIONS(1744), + [anon_sym_PIPE_PIPE] = ACTIONS(1744), + [anon_sym_BQUOTE] = ACTIONS(1744), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1746), }, [628] = { [sym_compound_statement] = STATE(932), - [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), [sym_comment] = ACTIONS(50), }, [629] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_PIPE_AMP] = ACTIONS(1775), - [anon_sym_AMP_AMP] = ACTIONS(1775), - [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_PIPE_AMP] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1773), + [anon_sym_PIPE_PIPE] = ACTIONS(1773), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -19875,28 +19909,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1775), + [anon_sym_BQUOTE] = ACTIONS(1773), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [630] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), - [anon_sym_BQUOTE] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_BQUOTE] = ACTIONS(1775), [sym_comment] = ACTIONS(50), }, [631] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(1777), - [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -19922,22 +19956,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(933), [sym_command_substitution] = STATE(933), [sym_process_substitution] = STATE(933), - [sym_word] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_raw_string] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1182), - [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_word] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1170), + [sym_raw_string] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LT_LPAREN] = ACTIONS(1180), + [anon_sym_GT_LPAREN] = ACTIONS(1180), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1867), }, [633] = { [aux_sym_concatenation_repeat1] = STATE(935), [sym_file_descriptor] = ACTIONS(424), - [sym__concat] = ACTIONS(1783), + [sym__concat] = ACTIONS(1781), [anon_sym_PIPE] = ACTIONS(428), [anon_sym_PIPE_AMP] = ACTIONS(424), [anon_sym_AMP_AMP] = ACTIONS(424), @@ -19957,7 +19991,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [634] = { [aux_sym_concatenation_repeat1] = STATE(936), [sym_file_descriptor] = ACTIONS(442), - [sym__concat] = ACTIONS(1783), + [sym__concat] = ACTIONS(1781), [anon_sym_PIPE] = ACTIONS(444), [anon_sym_PIPE_AMP] = ACTIONS(442), [anon_sym_AMP_AMP] = ACTIONS(442), @@ -19982,72 +20016,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(362), [sym_process_substitution] = STATE(362), [aux_sym_for_statement_repeat1] = STATE(635), - [sym_file_descriptor] = ACTIONS(929), - [sym_word] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_PIPE_AMP] = ACTIONS(929), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1806), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AMP_GT] = ACTIONS(1806), - [anon_sym_AMP_GT_GT] = ACTIONS(929), - [anon_sym_LT_AMP] = ACTIONS(929), - [anon_sym_GT_AMP] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(1806), - [anon_sym_LT_LT_DASH] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1817), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), + [sym_file_descriptor] = ACTIONS(927), + [sym_word] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_PIPE_AMP] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_GT] = ACTIONS(1804), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(1804), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(1804), + [anon_sym_LT_LT_DASH] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LT_LPAREN] = ACTIONS(1821), + [anon_sym_GT_LPAREN] = ACTIONS(1821), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1872), }, [636] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(637), - [sym_file_descriptor] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), - [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_file_descriptor] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), + [anon_sym_BQUOTE] = ACTIONS(1829), [sym_comment] = ACTIONS(50), }, [637] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(637), - [sym_file_descriptor] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_PIPE_AMP] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_GT_GT] = ACTIONS(1883), - [anon_sym_AMP_GT] = ACTIONS(1880), - [anon_sym_AMP_GT_GT] = ACTIONS(1883), - [anon_sym_LT_AMP] = ACTIONS(1883), - [anon_sym_GT_AMP] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_LT_LT_DASH] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1838), + [sym_file_descriptor] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1836), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1881), + [anon_sym_AMP_GT] = ACTIONS(1878), + [anon_sym_AMP_GT_GT] = ACTIONS(1881), + [anon_sym_LT_AMP] = ACTIONS(1881), + [anon_sym_GT_AMP] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1844), + [anon_sym_LT_LT_DASH] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(1836), [sym_comment] = ACTIONS(50), }, [638] = { @@ -20061,102 +20095,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(362), [aux_sym_for_statement_repeat1] = STATE(635), [aux_sym_command_repeat2] = STATE(937), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(578), + [sym_word] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [anon_sym_DQUOTE] = ACTIONS(192), - [sym_raw_string] = ACTIONS(582), + [sym_raw_string] = ACTIONS(580), [anon_sym_DOLLAR] = ACTIONS(194), [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), - [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1829), [anon_sym_LT_LPAREN] = ACTIONS(202), [anon_sym_GT_LPAREN] = ACTIONS(202), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(588), + [sym_identifier] = ACTIONS(586), }, [639] = { [sym_file_redirect] = STATE(938), - [sym_file_descriptor] = ACTIONS(854), + [sym_file_descriptor] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + }, + [640] = { + [aux_sym_concatenation_repeat1] = STATE(644), + [sym_file_descriptor] = ACTIONS(721), + [sym__concat] = ACTIONS(1224), [anon_sym_PIPE] = ACTIONS(1886), [anon_sym_SEMI_SEMI] = ACTIONS(1886), [anon_sym_PIPE_AMP] = ACTIONS(1886), [anon_sym_AMP_AMP] = ACTIONS(1886), [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(858), - [anon_sym_GT] = ACTIONS(858), - [anon_sym_GT_GT] = ACTIONS(858), - [anon_sym_AMP_GT] = ACTIONS(858), - [anon_sym_AMP_GT_GT] = ACTIONS(858), - [anon_sym_LT_AMP] = ACTIONS(858), - [anon_sym_GT_AMP] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1886), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1886), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), [sym_comment] = ACTIONS(64), [anon_sym_SEMI] = ACTIONS(1886), [anon_sym_LF] = ACTIONS(1886), [anon_sym_AMP] = ACTIONS(1886), }, - [640] = { - [aux_sym_concatenation_repeat1] = STATE(644), - [sym_file_descriptor] = ACTIONS(723), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, [641] = { [aux_sym_concatenation_repeat1] = STATE(659), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(1890), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - }, - [642] = { - [sym_file_descriptor] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(1224), [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), [anon_sym_SEMI_SEMI] = ACTIONS(1888), [anon_sym_PIPE_AMP] = ACTIONS(1888), [anon_sym_AMP_AMP] = ACTIONS(1888), @@ -20175,28 +20187,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1888), [anon_sym_AMP] = ACTIONS(1888), }, + [642] = { + [sym_file_descriptor] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1886), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1886), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + }, [643] = { [sym_string] = STATE(939), [sym_simple_expansion] = STATE(939), [sym_expansion] = STATE(939), [sym_command_substitution] = STATE(939), [sym_process_substitution] = STATE(939), - [sym_word] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(614), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_word] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(612), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(618), + [anon_sym_BQUOTE] = ACTIONS(620), + [anon_sym_LT_LPAREN] = ACTIONS(622), + [anon_sym_GT_LPAREN] = ACTIONS(622), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1892), }, [644] = { [aux_sym_concatenation_repeat1] = STATE(941), [sym_file_descriptor] = ACTIONS(282), - [sym__concat] = ACTIONS(1226), + [sym__concat] = ACTIONS(1224), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_SEMI_SEMI] = ACTIONS(284), [anon_sym_PIPE_AMP] = ACTIONS(284), @@ -20244,7 +20278,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1894), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -20253,89 +20287,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [647] = { - [sym_file_descriptor] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(468), - [anon_sym_PIPE_AMP] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_AMP_GT] = ACTIONS(468), - [anon_sym_AMP_GT_GT] = ACTIONS(468), - [anon_sym_LT_AMP] = ACTIONS(468), - [anon_sym_GT_AMP] = ACTIONS(468), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_LT_LT_DASH] = ACTIONS(468), + [sym_file_descriptor] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_AMP_GT] = ACTIONS(466), + [anon_sym_AMP_GT_GT] = ACTIONS(466), + [anon_sym_LT_AMP] = ACTIONS(466), + [anon_sym_GT_AMP] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(466), + [anon_sym_LT_LT_DASH] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [648] = { - [sym_file_descriptor] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [anon_sym_PIPE_AMP] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_AMP_GT] = ACTIONS(472), - [anon_sym_AMP_GT_GT] = ACTIONS(472), - [anon_sym_LT_AMP] = ACTIONS(472), - [anon_sym_GT_AMP] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_LT_LT_DASH] = ACTIONS(472), + [sym_file_descriptor] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_PIPE_AMP] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_AMP_GT] = ACTIONS(470), + [anon_sym_AMP_GT_GT] = ACTIONS(470), + [anon_sym_LT_AMP] = ACTIONS(470), + [anon_sym_GT_AMP] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_LT_LT_DASH] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [649] = { - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_SEMI_SEMI] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_AMP_GT] = ACTIONS(476), - [anon_sym_AMP_GT_GT] = ACTIONS(476), - [anon_sym_LT_AMP] = ACTIONS(476), - [anon_sym_GT_AMP] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_LT_LT_DASH] = ACTIONS(476), + [sym_file_descriptor] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_PIPE_AMP] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_AMP_GT] = ACTIONS(474), + [anon_sym_AMP_GT_GT] = ACTIONS(474), + [anon_sym_LT_AMP] = ACTIONS(474), + [anon_sym_GT_AMP] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_LT_LT_DASH] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [650] = { [sym_special_variable_name] = STATE(944), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1896), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -20344,44 +20378,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [651] = { - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1904), - [anon_sym_COLON] = ACTIONS(1906), - [anon_sym_COLON_QMARK] = ACTIONS(1904), - [anon_sym_COLON_DASH] = ACTIONS(1904), - [anon_sym_PERCENT] = ACTIONS(1904), - [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_COLON_QMARK] = ACTIONS(1902), + [anon_sym_COLON_DASH] = ACTIONS(1902), + [anon_sym_PERCENT] = ACTIONS(1902), + [anon_sym_SLASH] = ACTIONS(1902), [sym_comment] = ACTIONS(50), }, [652] = { - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_COLON] = ACTIONS(1914), - [anon_sym_COLON_QMARK] = ACTIONS(1912), - [anon_sym_COLON_DASH] = ACTIONS(1912), - [anon_sym_PERCENT] = ACTIONS(1912), - [anon_sym_SLASH] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_EQ] = ACTIONS(1910), + [anon_sym_COLON] = ACTIONS(1912), + [anon_sym_COLON_QMARK] = ACTIONS(1910), + [anon_sym_COLON_DASH] = ACTIONS(1910), + [anon_sym_PERCENT] = ACTIONS(1910), + [anon_sym_SLASH] = ACTIONS(1910), [sym_comment] = ACTIONS(50), }, [653] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [654] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -20401,21 +20435,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [655] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(1914), [sym_comment] = ACTIONS(50), }, [656] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -20428,29 +20462,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1914), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [657] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [658] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -20471,77 +20505,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [659] = { [aux_sym_concatenation_repeat1] = STATE(941), - [sym_file_descriptor] = ACTIONS(596), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_AMP_GT] = ACTIONS(598), - [anon_sym_AMP_GT_GT] = ACTIONS(598), - [anon_sym_LT_AMP] = ACTIONS(598), - [anon_sym_GT_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_LT_LT_DASH] = ACTIONS(598), + [sym_file_descriptor] = ACTIONS(594), + [sym__concat] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(596), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_LT_LT_DASH] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [660] = { - [sym__heredoc_middle] = ACTIONS(1920), - [sym__heredoc_end] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1920), + [sym__heredoc_middle] = ACTIONS(1918), + [sym__heredoc_end] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), [sym_comment] = ACTIONS(50), }, [661] = { - [sym_file_descriptor] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_SEMI_SEMI] = ACTIONS(1926), - [anon_sym_PIPE_AMP] = ACTIONS(1926), - [anon_sym_AMP_AMP] = ACTIONS(1926), - [anon_sym_PIPE_PIPE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_GT] = ACTIONS(1926), - [anon_sym_GT_GT] = ACTIONS(1926), - [anon_sym_AMP_GT] = ACTIONS(1926), - [anon_sym_AMP_GT_GT] = ACTIONS(1926), - [anon_sym_LT_AMP] = ACTIONS(1926), - [anon_sym_GT_AMP] = ACTIONS(1926), - [anon_sym_LT_LT] = ACTIONS(1926), - [anon_sym_LT_LT_DASH] = ACTIONS(1926), + [sym_file_descriptor] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_GT] = ACTIONS(1924), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1924), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1924), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LF] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), }, [662] = { [sym_special_variable_name] = STATE(955), - [anon_sym_DOLLAR] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1928), - [anon_sym_AT] = ACTIONS(1928), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_0] = ACTIONS(1932), - [anon_sym__] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_QMARK] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_0] = ACTIONS(1930), + [anon_sym__] = ACTIONS(1930), }, [663] = { [sym_special_variable_name] = STATE(958), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1932), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1934), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -20553,70 +20587,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(660), [sym_expansion] = STATE(660), [aux_sym_heredoc_repeat1] = STATE(960), - [sym__heredoc_middle] = ACTIONS(1248), - [sym__heredoc_end] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym__heredoc_middle] = ACTIONS(1246), + [sym__heredoc_end] = ACTIONS(1936), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), [sym_comment] = ACTIONS(50), }, [665] = { [aux_sym_concatenation_repeat1] = STATE(264), - [sym_file_descriptor] = ACTIONS(760), - [sym_word] = ACTIONS(760), + [sym_file_descriptor] = ACTIONS(758), + [sym_word] = ACTIONS(758), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1668), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(760), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_variable_name] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_AMP_GT] = ACTIONS(1666), + [anon_sym_AMP_GT_GT] = ACTIONS(758), + [anon_sym_LT_AMP] = ACTIONS(758), + [anon_sym_GT_AMP] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym_raw_string] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), + [anon_sym_LT_LPAREN] = ACTIONS(758), + [anon_sym_GT_LPAREN] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [666] = { [aux_sym_concatenation_repeat1] = STATE(279), - [sym_file_descriptor] = ACTIONS(784), - [sym_word] = ACTIONS(784), + [sym_file_descriptor] = ACTIONS(782), + [sym_word] = ACTIONS(782), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(784), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(784), - [anon_sym_AMP_GT] = ACTIONS(1672), - [anon_sym_AMP_GT_GT] = ACTIONS(784), - [anon_sym_LT_AMP] = ACTIONS(784), - [anon_sym_GT_AMP] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(784), - [sym_raw_string] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(1672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), - [anon_sym_LT_LPAREN] = ACTIONS(784), - [anon_sym_GT_LPAREN] = ACTIONS(784), + [sym_variable_name] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_GT_GT] = ACTIONS(782), + [anon_sym_AMP_GT] = ACTIONS(1670), + [anon_sym_AMP_GT_GT] = ACTIONS(782), + [anon_sym_LT_AMP] = ACTIONS(782), + [anon_sym_GT_AMP] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(782), + [sym_raw_string] = ACTIONS(782), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(782), + [anon_sym_BQUOTE] = ACTIONS(782), + [anon_sym_LT_LPAREN] = ACTIONS(782), + [anon_sym_GT_LPAREN] = ACTIONS(782), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1670), }, [667] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(390), [sym_file_descriptor] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_SEMI_SEMI] = ACTIONS(1940), - [anon_sym_PIPE_AMP] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), [anon_sym_LT] = ACTIONS(242), [anon_sym_GT] = ACTIONS(242), [anon_sym_GT_GT] = ACTIONS(242), @@ -20627,60 +20661,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(244), [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), }, [668] = { - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [anon_sym_RBRACK] = ACTIONS(731), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_RBRACK] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [669] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_RBRACK] = ACTIONS(735), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_RBRACK] = ACTIONS(733), [sym_comment] = ACTIONS(50), }, [670] = { [aux_sym_concatenation_repeat1] = STATE(670), - [sym__concat] = ACTIONS(1942), - [anon_sym_RBRACK] = ACTIONS(731), + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [671] = { - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_RBRACK] = ACTIONS(1037), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), [sym_comment] = ACTIONS(50), }, [672] = { - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1945), [sym_comment] = ACTIONS(50), }, [673] = { - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), [sym_comment] = ACTIONS(50), }, [674] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_RBRACK] = ACTIONS(1066), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1064), [sym_comment] = ACTIONS(50), }, [675] = { - [anon_sym_AT] = ACTIONS(1953), + [anon_sym_AT] = ACTIONS(1951), [sym_comment] = ACTIONS(50), }, [676] = { @@ -20690,10 +20724,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(966), [sym_command_substitution] = STATE(966), [sym_process_substitution] = STATE(966), - [sym_word] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1957), + [sym_word] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1955), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1955), + [sym_raw_string] = ACTIONS(1953), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -20701,18 +20735,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1957), }, [677] = { - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_RBRACK] = ACTIONS(1076), [sym_comment] = ACTIONS(50), }, [678] = { - [anon_sym_AT] = ACTIONS(1961), + [anon_sym_AT] = ACTIONS(1959), [sym_comment] = ACTIONS(50), }, [679] = { @@ -20722,10 +20756,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(971), [sym_command_substitution] = STATE(971), [sym_process_substitution] = STATE(971), - [sym_word] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1949), + [sym_word] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1947), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1963), + [sym_raw_string] = ACTIONS(1961), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -20733,119 +20767,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1965), + [sym_identifier] = ACTIONS(1963), }, [680] = { - [sym__concat] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_RBRACK] = ACTIONS(1162), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_RBRACK] = ACTIONS(1160), [sym_comment] = ACTIONS(50), }, [681] = { - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_RBRACK] = ACTIONS(1214), + [sym__concat] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_RBRACK] = ACTIONS(1212), [sym_comment] = ACTIONS(50), }, [682] = { - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [683] = { - [sym_file_descriptor] = ACTIONS(735), - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_file_descriptor] = ACTIONS(733), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [sym_variable_name] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(735), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [sym_identifier] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [684] = { [aux_sym_concatenation_repeat1] = STATE(684), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1967), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1965), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [685] = { [aux_sym_concatenation_repeat1] = STATE(974), @@ -20854,61 +20888,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [686] = { [aux_sym_concatenation_repeat1] = STATE(974), - [sym_word] = ACTIONS(596), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(390), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [687] = { - [sym_file_descriptor] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1972), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_file_descriptor] = ACTIONS(1968), + [sym_word] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1970), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1970), + [anon_sym_LT_AMP] = ACTIONS(1970), + [anon_sym_GT_AMP] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_raw_string] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_LT_LPAREN] = ACTIONS(1970), + [anon_sym_GT_LPAREN] = ACTIONS(1970), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [688] = { [sym_concatenation] = STATE(72), @@ -20918,95 +20952,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(688), - [sym_word] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(940), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(946), - [anon_sym_GT_LPAREN] = ACTIONS(946), + [sym_word] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(938), + [anon_sym_BQUOTE] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1977), + [sym_identifier] = ACTIONS(1975), }, [689] = { - [sym_file_descriptor] = ACTIONS(1037), - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_file_descriptor] = ACTIONS(1035), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [690] = { - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1980), [sym_comment] = ACTIONS(50), }, [691] = { - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1984), [sym_comment] = ACTIONS(50), }, [692] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_AMP_GT] = ACTIONS(1068), - [anon_sym_AMP_GT_GT] = ACTIONS(1068), - [anon_sym_LT_AMP] = ACTIONS(1068), - [anon_sym_GT_AMP] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LT_LPAREN] = ACTIONS(1068), - [anon_sym_GT_LPAREN] = ACTIONS(1068), + [sym_file_descriptor] = ACTIONS(1064), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [sym_variable_name] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1066), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_raw_string] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [693] = { - [anon_sym_AT] = ACTIONS(1988), + [anon_sym_AT] = ACTIONS(1986), [sym_comment] = ACTIONS(50), }, [694] = { @@ -21016,10 +21050,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(980), [sym_command_substitution] = STATE(980), [sym_process_substitution] = STATE(980), - [sym_word] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1992), + [sym_word] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1990), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1990), + [sym_raw_string] = ACTIONS(1988), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -21027,42 +21061,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1992), }, [695] = { - [sym_file_descriptor] = ACTIONS(1078), - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [sym_variable_name] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_file_descriptor] = ACTIONS(1076), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [sym_variable_name] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_AMP_GT] = ACTIONS(1078), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [696] = { - [anon_sym_AT] = ACTIONS(1996), + [anon_sym_AT] = ACTIONS(1994), [sym_comment] = ACTIONS(50), }, [697] = { @@ -21072,10 +21106,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(985), [sym_command_substitution] = STATE(985), [sym_process_substitution] = STATE(985), - [sym_word] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1984), + [sym_word] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1998), + [sym_raw_string] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -21083,71 +21117,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2000), + [sym_identifier] = ACTIONS(1998), }, [698] = { - [sym_file_descriptor] = ACTIONS(1162), - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [sym_variable_name] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), - [anon_sym_PIPE_AMP] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_AMP_GT] = ACTIONS(1164), - [anon_sym_AMP_GT_GT] = ACTIONS(1164), - [anon_sym_LT_AMP] = ACTIONS(1164), - [anon_sym_GT_AMP] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_raw_string] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(1164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [anon_sym_LT_LPAREN] = ACTIONS(1164), - [anon_sym_GT_LPAREN] = ACTIONS(1164), + [sym_file_descriptor] = ACTIONS(1160), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [sym_variable_name] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_LT_LPAREN] = ACTIONS(1162), + [anon_sym_GT_LPAREN] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [699] = { - [sym_file_descriptor] = ACTIONS(1214), - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym_variable_name] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_raw_string] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1216), - [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_file_descriptor] = ACTIONS(1212), + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [sym_variable_name] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_AMP_GT] = ACTIONS(1214), + [anon_sym_AMP_GT_GT] = ACTIONS(1214), + [anon_sym_LT_AMP] = ACTIONS(1214), + [anon_sym_GT_AMP] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_raw_string] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1214), + [anon_sym_GT_LPAREN] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [700] = { [sym_string] = STATE(988), @@ -21155,22 +21189,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(988), [sym_command_substitution] = STATE(988), [sym_process_substitution] = STATE(988), - [sym_word] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(790), - [sym_raw_string] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [sym_word] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(788), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(798), + [anon_sym_GT_LPAREN] = ACTIONS(798), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2002), }, [701] = { [aux_sym_concatenation_repeat1] = STATE(990), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(1372), + [sym__concat] = ACTIONS(1370), [anon_sym_SEMI_SEMI] = ACTIONS(284), [anon_sym_DQUOTE] = ACTIONS(284), [sym_raw_string] = ACTIONS(284), @@ -21209,7 +21243,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2004), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -21218,74 +21252,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [704] = { - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [anon_sym_SEMI_SEMI] = ACTIONS(468), - [anon_sym_DQUOTE] = ACTIONS(468), - [sym_raw_string] = ACTIONS(468), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(468), - [anon_sym_BQUOTE] = ACTIONS(468), - [anon_sym_LT_LPAREN] = ACTIONS(468), - [anon_sym_GT_LPAREN] = ACTIONS(468), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_raw_string] = ACTIONS(466), + [anon_sym_DOLLAR] = ACTIONS(466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(466), + [anon_sym_BQUOTE] = ACTIONS(466), + [anon_sym_LT_LPAREN] = ACTIONS(466), + [anon_sym_GT_LPAREN] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [sym_identifier] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [705] = { - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(472), - [sym_raw_string] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(472), - [anon_sym_BQUOTE] = ACTIONS(472), - [anon_sym_LT_LPAREN] = ACTIONS(472), - [anon_sym_GT_LPAREN] = ACTIONS(472), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_raw_string] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(470), + [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_LT_LPAREN] = ACTIONS(470), + [anon_sym_GT_LPAREN] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [sym_identifier] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [706] = { - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [anon_sym_SEMI_SEMI] = ACTIONS(476), - [anon_sym_DQUOTE] = ACTIONS(476), - [sym_raw_string] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(476), - [anon_sym_BQUOTE] = ACTIONS(476), - [anon_sym_LT_LPAREN] = ACTIONS(476), - [anon_sym_GT_LPAREN] = ACTIONS(476), + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(474), + [sym_raw_string] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(474), + [anon_sym_BQUOTE] = ACTIONS(474), + [anon_sym_LT_LPAREN] = ACTIONS(474), + [anon_sym_GT_LPAREN] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [sym_identifier] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [707] = { [sym_special_variable_name] = STATE(993), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2006), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -21294,44 +21328,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [708] = { - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(2014), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_COLON_QMARK] = ACTIONS(2014), - [anon_sym_COLON_DASH] = ACTIONS(2014), - [anon_sym_PERCENT] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(2012), + [anon_sym_COLON] = ACTIONS(2014), + [anon_sym_COLON_QMARK] = ACTIONS(2012), + [anon_sym_COLON_DASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2012), + [anon_sym_SLASH] = ACTIONS(2012), [sym_comment] = ACTIONS(50), }, [709] = { - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_EQ] = ACTIONS(2022), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_COLON_QMARK] = ACTIONS(2022), - [anon_sym_COLON_DASH] = ACTIONS(2022), - [anon_sym_PERCENT] = ACTIONS(2022), - [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_EQ] = ACTIONS(2020), + [anon_sym_COLON] = ACTIONS(2022), + [anon_sym_COLON_QMARK] = ACTIONS(2020), + [anon_sym_COLON_DASH] = ACTIONS(2020), + [anon_sym_PERCENT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2020), [sym_comment] = ACTIONS(50), }, [710] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [711] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -21351,21 +21385,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [712] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(2024), [sym_comment] = ACTIONS(50), }, [713] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -21378,29 +21412,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2024), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [714] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [715] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -21421,22 +21455,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [716] = { [aux_sym_concatenation_repeat1] = STATE(990), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(1372), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(598), - [sym_raw_string] = ACTIONS(598), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), - [anon_sym_BQUOTE] = ACTIONS(598), - [anon_sym_LT_LPAREN] = ACTIONS(598), - [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [717] = { [sym_do_group] = STATE(1002), @@ -21451,69 +21485,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(433), [sym_process_substitution] = STATE(433), [aux_sym_for_statement_repeat1] = STATE(718), - [sym_word] = ACTIONS(2030), - [anon_sym_SEMI_SEMI] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym_raw_string] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2045), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2051), - [anon_sym_GT_LPAREN] = ACTIONS(2051), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2043), + [anon_sym_BQUOTE] = ACTIONS(2046), + [anon_sym_LT_LPAREN] = ACTIONS(2049), + [anon_sym_GT_LPAREN] = ACTIONS(2049), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2054), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), + [sym_identifier] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), }, [719] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_done] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_done] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [720] = { - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_RPAREN] = ACTIONS(2057), - [anon_sym_SEMI_SEMI] = ACTIONS(2057), - [anon_sym_PIPE_AMP] = ACTIONS(2057), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_SEMI_SEMI] = ACTIONS(2055), + [anon_sym_PIPE_AMP] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_LF] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), }, [721] = { [sym__terminated_statement] = STATE(444), @@ -21540,43 +21574,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(721), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_done] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(657), - [anon_sym_case] = ACTIONS(660), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_done] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(655), + [anon_sym_case] = ACTIONS(658), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [722] = { - [anon_sym_then] = ACTIONS(2061), + [anon_sym_then] = ACTIONS(2059), [sym_comment] = ACTIONS(50), }, [723] = { @@ -21617,21 +21651,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [724] = { [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(2063), + [anon_sym_SEMI_SEMI] = ACTIONS(2061), [anon_sym_PIPE_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(234), [anon_sym_PIPE_PIPE] = ACTIONS(234), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_LF] = ACTIONS(2063), - [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), }, [725] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_SEMI_SEMI] = ACTIONS(2063), + [anon_sym_SEMI_SEMI] = ACTIONS(2061), [anon_sym_PIPE_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(234), [anon_sym_PIPE_PIPE] = ACTIONS(234), @@ -21652,9 +21686,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(264), [sym_comment] = ACTIONS(64), [sym_identifier] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_LF] = ACTIONS(2063), - [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_LF] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), }, [726] = { [sym__terminated_statement] = STATE(723), @@ -21687,7 +21721,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2065), + [anon_sym_fi] = ACTIONS(2063), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -21717,57 +21751,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [727] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_fi] = ACTIONS(602), - [anon_sym_elif] = ACTIONS(602), - [anon_sym_else] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_fi] = ACTIONS(600), + [anon_sym_elif] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [728] = { - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_SEMI_SEMI] = ACTIONS(2067), - [anon_sym_PIPE_AMP] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_SEMI_SEMI] = ACTIONS(2065), + [anon_sym_PIPE_AMP] = ACTIONS(2065), + [anon_sym_AMP_AMP] = ACTIONS(2065), + [anon_sym_PIPE_PIPE] = ACTIONS(2065), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_LF] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_LF] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2065), }, [729] = { - [anon_sym_fi] = ACTIONS(2069), + [anon_sym_fi] = ACTIONS(2067), [sym_comment] = ACTIONS(50), }, [730] = { @@ -21795,106 +21829,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(730), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_if] = ACTIONS(657), - [anon_sym_fi] = ACTIONS(2059), - [anon_sym_elif] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_case] = ACTIONS(660), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_fi] = ACTIONS(2057), + [anon_sym_elif] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(658), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [731] = { [sym_elif_clause] = STATE(453), [sym_else_clause] = STATE(1007), [aux_sym_if_statement_repeat1] = STATE(732), - [anon_sym_fi] = ACTIONS(2069), - [anon_sym_elif] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1424), + [anon_sym_fi] = ACTIONS(2067), + [anon_sym_elif] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1422), [sym_comment] = ACTIONS(50), }, [732] = { [sym_elif_clause] = STATE(453), [aux_sym_if_statement_repeat1] = STATE(732), - [anon_sym_fi] = ACTIONS(2071), - [anon_sym_elif] = ACTIONS(2073), - [anon_sym_else] = ACTIONS(2071), + [anon_sym_fi] = ACTIONS(2069), + [anon_sym_elif] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2069), [sym_comment] = ACTIONS(50), }, [733] = { [aux_sym_case_item_repeat1] = STATE(1010), [aux_sym_concatenation_repeat1] = STATE(1011), - [sym__concat] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2078), + [sym__concat] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2076), [sym_comment] = ACTIONS(50), }, [734] = { - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_SEMI_SEMI] = ACTIONS(2078), + [anon_sym_PIPE_AMP] = ACTIONS(2078), + [anon_sym_AMP_AMP] = ACTIONS(2078), + [anon_sym_PIPE_PIPE] = ACTIONS(2078), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), }, [735] = { [aux_sym_case_item_repeat1] = STATE(1013), [aux_sym_concatenation_repeat1] = STATE(1014), - [sym__concat] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2082), + [sym__concat] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2080), [sym_comment] = ACTIONS(50), }, [736] = { - [sym_word] = ACTIONS(2084), - [anon_sym_esac] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym_raw_string] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2084), - [anon_sym_BQUOTE] = ACTIONS(2084), - [anon_sym_LT_LPAREN] = ACTIONS(2084), - [anon_sym_GT_LPAREN] = ACTIONS(2084), + [sym_word] = ACTIONS(2082), + [anon_sym_esac] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym_raw_string] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), + [anon_sym_BQUOTE] = ACTIONS(2082), + [anon_sym_LT_LPAREN] = ACTIONS(2082), + [anon_sym_GT_LPAREN] = ACTIONS(2082), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2086), }, [737] = { [aux_sym_case_item_repeat1] = STATE(1010), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2076), [sym_comment] = ACTIONS(50), }, [738] = { @@ -21906,10 +21940,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2090), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2088), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -21917,7 +21951,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [739] = { [sym_case_item] = STATE(736), @@ -21928,10 +21962,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1017), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2090), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2088), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -21939,96 +21973,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [740] = { - [sym__concat] = ACTIONS(1629), - [anon_sym_in] = ACTIONS(1631), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [sym__concat] = ACTIONS(1627), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [741] = { - [anon_sym_AT] = ACTIONS(2092), + [anon_sym_AT] = ACTIONS(2090), [sym_comment] = ACTIONS(50), }, [742] = { - [sym__concat] = ACTIONS(1635), - [anon_sym_in] = ACTIONS(1637), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), + [sym__concat] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), }, [743] = { - [anon_sym_AT] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2092), [sym_comment] = ACTIONS(50), }, [744] = { - [anon_sym_RBRACK] = ACTIONS(2096), + [anon_sym_RBRACK] = ACTIONS(2094), [sym_comment] = ACTIONS(50), }, [745] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2100), + [sym__concat] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2098), [sym_comment] = ACTIONS(50), }, [746] = { - [sym__concat] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1649), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), + [sym__concat] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), }, [747] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2104), + [sym__concat] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2102), [sym_comment] = ACTIONS(50), }, [748] = { - [sym__concat] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2100), + [sym__concat] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2098), [sym_comment] = ACTIONS(50), }, [749] = { - [anon_sym_RBRACK] = ACTIONS(2106), + [anon_sym_RBRACK] = ACTIONS(2104), [sym_comment] = ACTIONS(50), }, [750] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2110), + [sym__concat] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2108), [sym_comment] = ACTIONS(50), }, [751] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2114), + [sym__concat] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2112), [sym_comment] = ACTIONS(50), }, [752] = { - [sym__concat] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2110), + [sym__concat] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2108), [sym_comment] = ACTIONS(50), }, [753] = { - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_SEMI_SEMI] = ACTIONS(2116), - [anon_sym_PIPE_AMP] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_SEMI_SEMI] = ACTIONS(2114), + [anon_sym_PIPE_AMP] = ACTIONS(2114), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_PIPE_PIPE] = ACTIONS(2114), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_LF] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_LF] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), }, [754] = { [sym_case_item] = STATE(736), @@ -22039,10 +22073,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2118), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2116), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -22050,7 +22084,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [755] = { [sym_case_item] = STATE(736), @@ -22061,10 +22095,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1031), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2118), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2116), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -22072,47 +22106,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [756] = { [sym_file_redirect] = STATE(1032), - [sym_file_descriptor] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(858), - [anon_sym_GT] = ACTIONS(858), - [anon_sym_GT_GT] = ACTIONS(858), - [anon_sym_AMP_GT] = ACTIONS(858), - [anon_sym_AMP_GT_GT] = ACTIONS(858), - [anon_sym_LT_AMP] = ACTIONS(858), - [anon_sym_GT_AMP] = ACTIONS(858), + [sym_file_descriptor] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_SEMI_SEMI] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_AMP_GT] = ACTIONS(856), + [anon_sym_AMP_GT_GT] = ACTIONS(856), + [anon_sym_LT_AMP] = ACTIONS(856), + [anon_sym_GT_AMP] = ACTIONS(856), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), }, [757] = { - [sym_file_descriptor] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_SEMI_SEMI] = ACTIONS(2124), - [anon_sym_PIPE_AMP] = ACTIONS(2124), - [anon_sym_AMP_AMP] = ACTIONS(2124), - [anon_sym_PIPE_PIPE] = ACTIONS(2124), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_GT] = ACTIONS(2124), - [anon_sym_GT_GT] = ACTIONS(2124), - [anon_sym_AMP_GT] = ACTIONS(2124), - [anon_sym_AMP_GT_GT] = ACTIONS(2124), - [anon_sym_LT_AMP] = ACTIONS(2124), - [anon_sym_GT_AMP] = ACTIONS(2124), + [sym_file_descriptor] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_SEMI_SEMI] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_GT] = ACTIONS(2122), + [anon_sym_GT_GT] = ACTIONS(2122), + [anon_sym_AMP_GT] = ACTIONS(2122), + [anon_sym_AMP_GT_GT] = ACTIONS(2122), + [anon_sym_LT_AMP] = ACTIONS(2122), + [anon_sym_GT_AMP] = ACTIONS(2122), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_LF] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), }, [758] = { [sym__terminated_statement] = STATE(23), @@ -22139,40 +22173,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(758), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_if] = ACTIONS(657), - [anon_sym_case] = ACTIONS(660), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_case] = ACTIONS(658), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [759] = { [sym_concatenation] = STATE(1035), @@ -22181,37 +22215,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1033), [sym_command_substitution] = STATE(1033), [sym_process_substitution] = STATE(1033), - [sym_word] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_raw_string] = ACTIONS(2126), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LT_LPAREN] = ACTIONS(1485), - [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_word] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym_raw_string] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1481), + [anon_sym_LT_LPAREN] = ACTIONS(1483), + [anon_sym_GT_LPAREN] = ACTIONS(1483), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2126), }, [760] = { [aux_sym_concatenation_repeat1] = STATE(1037), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [761] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(1039), - [anon_sym_DQUOTE] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2130), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -22221,25 +22255,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [762] = { [sym_special_variable_name] = STATE(1042), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_AT] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_AT] = ACTIONS(2132), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_QMARK] = ACTIONS(2134), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2134), - [anon_sym_0] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2138), + [sym_identifier] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_QMARK] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_0] = ACTIONS(2136), + [anon_sym__] = ACTIONS(2136), }, [763] = { [sym_special_variable_name] = STATE(1045), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2138), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2140), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -22420,34 +22454,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [767] = { [aux_sym_concatenation_repeat1] = STATE(1052), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_SEMI_SEMI] = ACTIONS(1240), + [anon_sym_PIPE_AMP] = ACTIONS(1240), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LF] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), }, [768] = { - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [769] = { [aux_sym_concatenation_repeat1] = STATE(1053), [sym_file_descriptor] = ACTIONS(282), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(762), + [sym__concat] = ACTIONS(760), [sym_variable_name] = ACTIONS(282), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_RPAREN] = ACTIONS(284), @@ -22478,36 +22512,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [770] = { [aux_sym_concatenation_repeat1] = STATE(1053), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(762), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_AMP_GT] = ACTIONS(598), - [anon_sym_AMP_GT_GT] = ACTIONS(598), - [anon_sym_LT_AMP] = ACTIONS(598), - [anon_sym_GT_AMP] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(598), - [sym_raw_string] = ACTIONS(598), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), - [anon_sym_BQUOTE] = ACTIONS(598), - [anon_sym_LT_LPAREN] = ACTIONS(598), - [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(760), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(596), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(596), + [anon_sym_GT_LPAREN] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [771] = { [sym_compound_statement] = STATE(1054), @@ -22515,13 +22549,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(50), }, [772] = { - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2146), - [anon_sym_AMP_GT] = ACTIONS(2144), - [anon_sym_AMP_GT_GT] = ACTIONS(2146), - [anon_sym_LT_AMP] = ACTIONS(2146), - [anon_sym_GT_AMP] = ACTIONS(2146), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_GT_GT] = ACTIONS(2144), + [anon_sym_AMP_GT] = ACTIONS(2142), + [anon_sym_AMP_GT_GT] = ACTIONS(2144), + [anon_sym_LT_AMP] = ACTIONS(2144), + [anon_sym_GT_AMP] = ACTIONS(2144), [sym_comment] = ACTIONS(50), }, [773] = { @@ -22531,77 +22565,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1056), [sym_command_substitution] = STATE(1056), [sym_process_substitution] = STATE(1056), - [sym_word] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_raw_string] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LT_LPAREN] = ACTIONS(1485), - [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_word] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym_raw_string] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1481), + [anon_sym_LT_LPAREN] = ACTIONS(1483), + [anon_sym_GT_LPAREN] = ACTIONS(1483), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2148), }, [774] = { [aux_sym_concatenation_repeat1] = STATE(1058), - [sym_word] = ACTIONS(760), - [sym__concat] = ACTIONS(1566), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), + [sym_word] = ACTIONS(758), + [sym__concat] = ACTIONS(1564), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_PIPE_AMP] = ACTIONS(762), + [anon_sym_AMP_AMP] = ACTIONS(762), + [anon_sym_PIPE_PIPE] = ACTIONS(762), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(764), + [sym_identifier] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LF] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(762), }, [775] = { [aux_sym_concatenation_repeat1] = STATE(1059), - [sym_word] = ACTIONS(784), - [sym__concat] = ACTIONS(1566), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(786), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_SEMI_SEMI] = ACTIONS(786), - [anon_sym_PIPE_AMP] = ACTIONS(786), - [anon_sym_AMP_AMP] = ACTIONS(786), - [anon_sym_PIPE_PIPE] = ACTIONS(786), + [sym_word] = ACTIONS(782), + [sym__concat] = ACTIONS(1564), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_SEMI_SEMI] = ACTIONS(784), + [anon_sym_PIPE_AMP] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(784), + [anon_sym_PIPE_PIPE] = ACTIONS(784), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(786), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_LF] = ACTIONS(786), - [anon_sym_AMP] = ACTIONS(786), + [sym_identifier] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LF] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(784), }, [776] = { [sym_file_redirect] = STATE(938), - [sym_file_descriptor] = ACTIONS(1493), + [sym_file_descriptor] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1884), + [anon_sym_PIPE_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_AMP_GT] = ACTIONS(1493), + [anon_sym_AMP_GT_GT] = ACTIONS(1493), + [anon_sym_LT_AMP] = ACTIONS(1493), + [anon_sym_GT_AMP] = ACTIONS(1493), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + }, + [777] = { + [aux_sym_concatenation_repeat1] = STATE(779), + [sym_file_descriptor] = ACTIONS(721), + [sym__concat] = ACTIONS(1224), [anon_sym_PIPE] = ACTIONS(1886), [anon_sym_RPAREN] = ACTIONS(1886), [anon_sym_SEMI_SEMI] = ACTIONS(1886), [anon_sym_PIPE_AMP] = ACTIONS(1886), [anon_sym_AMP_AMP] = ACTIONS(1886), [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_AMP_GT] = ACTIONS(1495), - [anon_sym_AMP_GT_GT] = ACTIONS(1495), - [anon_sym_LT_AMP] = ACTIONS(1495), - [anon_sym_GT_AMP] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_AMP_GT] = ACTIONS(1886), + [anon_sym_AMP_GT_GT] = ACTIONS(1886), + [anon_sym_LT_AMP] = ACTIONS(1886), + [anon_sym_GT_AMP] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1886), + [anon_sym_LT_LT_DASH] = ACTIONS(1886), [sym_comment] = ACTIONS(64), [anon_sym_SEMI] = ACTIONS(1886), [anon_sym_LF] = ACTIONS(1886), [anon_sym_AMP] = ACTIONS(1886), }, - [777] = { - [aux_sym_concatenation_repeat1] = STATE(779), - [sym_file_descriptor] = ACTIONS(723), - [sym__concat] = ACTIONS(1226), + [778] = { + [aux_sym_concatenation_repeat1] = STATE(780), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(1224), [anon_sym_PIPE] = ACTIONS(1888), [anon_sym_RPAREN] = ACTIONS(1888), [anon_sym_SEMI_SEMI] = ACTIONS(1888), @@ -22622,34 +22680,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1888), [anon_sym_AMP] = ACTIONS(1888), }, - [778] = { - [aux_sym_concatenation_repeat1] = STATE(780), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(1890), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_LT_LT_DASH] = ACTIONS(1890), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - }, [779] = { [aux_sym_concatenation_repeat1] = STATE(1060), [sym_file_descriptor] = ACTIONS(282), - [sym__concat] = ACTIONS(1226), + [sym__concat] = ACTIONS(1224), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_RPAREN] = ACTIONS(284), [anon_sym_SEMI_SEMI] = ACTIONS(284), @@ -22672,51 +22706,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [780] = { [aux_sym_concatenation_repeat1] = STATE(1060), - [sym_file_descriptor] = ACTIONS(596), - [sym__concat] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_AMP_GT] = ACTIONS(598), - [anon_sym_AMP_GT_GT] = ACTIONS(598), - [anon_sym_LT_AMP] = ACTIONS(598), - [anon_sym_GT_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_LT_LT_DASH] = ACTIONS(598), + [sym_file_descriptor] = ACTIONS(594), + [sym__concat] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_AMP_GT] = ACTIONS(596), + [anon_sym_AMP_GT_GT] = ACTIONS(596), + [anon_sym_LT_AMP] = ACTIONS(596), + [anon_sym_GT_AMP] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_LT_LT_DASH] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [781] = { - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_SEMI_SEMI] = ACTIONS(2152), - [anon_sym_PIPE_AMP] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2152), - [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_SEMI_SEMI] = ACTIONS(2150), + [anon_sym_PIPE_AMP] = ACTIONS(2150), + [anon_sym_AMP_AMP] = ACTIONS(2150), + [anon_sym_PIPE_PIPE] = ACTIONS(2150), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_LF] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_LF] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), }, [782] = { [sym_file_redirect] = STATE(151), [sym_heredoc_redirect] = STATE(151), [aux_sym_command_repeat2] = STATE(498), [sym_file_descriptor] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1940), - [anon_sym_SEMI_SEMI] = ACTIONS(1940), - [anon_sym_PIPE_AMP] = ACTIONS(1940), - [anon_sym_AMP_AMP] = ACTIONS(1940), - [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1938), + [anon_sym_SEMI_SEMI] = ACTIONS(1938), + [anon_sym_PIPE_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(380), [anon_sym_GT_GT] = ACTIONS(380), @@ -22727,109 +22761,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(244), [anon_sym_LT_LT_DASH] = ACTIONS(244), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_LF] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LF] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), }, [783] = { - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_RBRACK] = ACTIONS(2154), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_raw_string] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [anon_sym_LT_LPAREN] = ACTIONS(1629), - [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_RBRACK] = ACTIONS(2152), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [anon_sym_LT_LPAREN] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1627), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), }, [784] = { - [anon_sym_AT] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2154), [sym_comment] = ACTIONS(50), }, [785] = { - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_RBRACK] = ACTIONS(2158), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_raw_string] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_RBRACK] = ACTIONS(2156), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym_raw_string] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1633), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1633), + [anon_sym_GT_LPAREN] = ACTIONS(1633), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), }, [786] = { - [anon_sym_AT] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2158), [sym_comment] = ACTIONS(50), }, [787] = { - [anon_sym_RBRACK] = ACTIONS(2162), + [anon_sym_RBRACK] = ACTIONS(2160), [sym_comment] = ACTIONS(50), }, [788] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2166), + [sym__concat] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2164), [sym_comment] = ACTIONS(50), }, [789] = { - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_raw_string] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(2168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_RBRACK] = ACTIONS(2166), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_raw_string] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1645), + [anon_sym_BQUOTE] = ACTIONS(1645), + [anon_sym_LT_LPAREN] = ACTIONS(1645), + [anon_sym_GT_LPAREN] = ACTIONS(1645), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), }, [790] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2172), + [sym__concat] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2170), [sym_comment] = ACTIONS(50), }, [791] = { - [sym__concat] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2166), + [sym__concat] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2164), [sym_comment] = ACTIONS(50), }, [792] = { - [anon_sym_RBRACK] = ACTIONS(2174), + [anon_sym_RBRACK] = ACTIONS(2172), [sym_comment] = ACTIONS(50), }, [793] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2178), + [sym__concat] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2176), [sym_comment] = ACTIONS(50), }, [794] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2182), + [sym__concat] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2180), [sym_comment] = ACTIONS(50), }, [795] = { - [sym__concat] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2178), + [sym__concat] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2176), [sym_comment] = ACTIONS(50), }, [796] = { @@ -22838,22 +22872,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1073), [sym_command_substitution] = STATE(1073), [sym_process_substitution] = STATE(1073), - [sym_word] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_raw_string] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(970), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(974), - [anon_sym_GT_LPAREN] = ACTIONS(974), + [sym_word] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(2182), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(968), + [anon_sym_BQUOTE] = ACTIONS(970), + [anon_sym_LT_LPAREN] = ACTIONS(972), + [anon_sym_GT_LPAREN] = ACTIONS(972), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2184), }, [797] = { [aux_sym_concatenation_repeat1] = STATE(1075), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(1566), + [sym__concat] = ACTIONS(1564), [sym_variable_name] = ACTIONS(282), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_SEMI_SEMI] = ACTIONS(284), @@ -22867,19 +22901,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(284), }, [798] = { - [sym_word] = ACTIONS(1342), - [sym_variable_name] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_SEMI_SEMI] = ACTIONS(1344), - [anon_sym_PIPE_AMP] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [sym_word] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_LF] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LF] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), }, [799] = { [sym_concatenation] = STATE(72), @@ -22889,10 +22923,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(688), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(2188), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(2186), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -22900,7 +22934,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [800] = { [sym_word] = ACTIONS(446), @@ -22923,7 +22957,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -22932,68 +22966,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [802] = { - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [sym_variable_name] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(468), - [anon_sym_PIPE_AMP] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [sym_variable_name] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [sym_identifier] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [803] = { - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [sym_variable_name] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [anon_sym_PIPE_AMP] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [sym_variable_name] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_PIPE_AMP] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [sym_identifier] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [804] = { - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_SEMI_SEMI] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [sym_variable_name] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_PIPE_AMP] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [sym_identifier] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [805] = { [sym_special_variable_name] = STATE(1079), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -23002,44 +23036,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [806] = { - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2196), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_COLON] = ACTIONS(2200), - [anon_sym_COLON_QMARK] = ACTIONS(2198), - [anon_sym_COLON_DASH] = ACTIONS(2198), - [anon_sym_PERCENT] = ACTIONS(2198), - [anon_sym_SLASH] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_EQ] = ACTIONS(2196), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_COLON_QMARK] = ACTIONS(2196), + [anon_sym_COLON_DASH] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), [sym_comment] = ACTIONS(50), }, [807] = { - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2206), - [anon_sym_COLON] = ACTIONS(2208), - [anon_sym_COLON_QMARK] = ACTIONS(2206), - [anon_sym_COLON_DASH] = ACTIONS(2206), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_EQ] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_COLON_QMARK] = ACTIONS(2204), + [anon_sym_COLON_DASH] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), [sym_comment] = ACTIONS(50), }, [808] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2208), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [809] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2208), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -23059,21 +23093,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [810] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(2208), [sym_comment] = ACTIONS(50), }, [811] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -23086,29 +23120,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(2210), + [anon_sym_BQUOTE] = ACTIONS(2208), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [812] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2212), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [813] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2212), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -23129,241 +23163,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [814] = { [aux_sym_concatenation_repeat1] = STATE(1075), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(1566), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(1564), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [815] = { - [sym_file_descriptor] = ACTIONS(1629), - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [sym_variable_name] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(1629), - [anon_sym_AMP_GT] = ACTIONS(2154), - [anon_sym_AMP_GT_GT] = ACTIONS(1629), - [anon_sym_LT_AMP] = ACTIONS(1629), - [anon_sym_GT_AMP] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_raw_string] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [anon_sym_LT_LPAREN] = ACTIONS(1629), - [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_file_descriptor] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [sym_variable_name] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_AMP_GT] = ACTIONS(2152), + [anon_sym_AMP_GT_GT] = ACTIONS(1627), + [anon_sym_LT_AMP] = ACTIONS(1627), + [anon_sym_GT_AMP] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [anon_sym_LT_LPAREN] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1627), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), }, [816] = { - [anon_sym_AT] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(2212), [sym_comment] = ACTIONS(50), }, [817] = { - [sym_file_descriptor] = ACTIONS(1635), - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [sym_variable_name] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_PIPE_AMP] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_PIPE_PIPE] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(1635), - [anon_sym_AMP_GT] = ACTIONS(2158), - [anon_sym_AMP_GT_GT] = ACTIONS(1635), - [anon_sym_LT_AMP] = ACTIONS(1635), - [anon_sym_GT_AMP] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_raw_string] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_file_descriptor] = ACTIONS(1633), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [sym_variable_name] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1633), + [anon_sym_PIPE_PIPE] = ACTIONS(1633), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(1633), + [anon_sym_AMP_GT] = ACTIONS(2156), + [anon_sym_AMP_GT_GT] = ACTIONS(1633), + [anon_sym_LT_AMP] = ACTIONS(1633), + [anon_sym_GT_AMP] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym_raw_string] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1633), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1633), + [anon_sym_GT_LPAREN] = ACTIONS(1633), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), }, [818] = { - [anon_sym_AT] = ACTIONS(2216), + [anon_sym_AT] = ACTIONS(2214), [sym_comment] = ACTIONS(50), }, [819] = { - [anon_sym_RBRACK] = ACTIONS(2218), + [anon_sym_RBRACK] = ACTIONS(2216), [sym_comment] = ACTIONS(50), }, [820] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2222), + [sym__concat] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2220), [sym_comment] = ACTIONS(50), }, [821] = { - [sym_file_descriptor] = ACTIONS(1647), - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [sym_variable_name] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_PIPE_AMP] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_PIPE_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_AMP_GT] = ACTIONS(2168), - [anon_sym_AMP_GT_GT] = ACTIONS(1647), - [anon_sym_LT_AMP] = ACTIONS(1647), - [anon_sym_GT_AMP] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_raw_string] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(2168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_file_descriptor] = ACTIONS(1645), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [sym_variable_name] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_PIPE_AMP] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1645), + [anon_sym_PIPE_PIPE] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_AMP_GT] = ACTIONS(2166), + [anon_sym_AMP_GT_GT] = ACTIONS(1645), + [anon_sym_LT_AMP] = ACTIONS(1645), + [anon_sym_GT_AMP] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_raw_string] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1645), + [anon_sym_BQUOTE] = ACTIONS(1645), + [anon_sym_LT_LPAREN] = ACTIONS(1645), + [anon_sym_GT_LPAREN] = ACTIONS(1645), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), }, [822] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2226), + [sym__concat] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2224), [sym_comment] = ACTIONS(50), }, [823] = { - [sym__concat] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2222), + [sym__concat] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2220), [sym_comment] = ACTIONS(50), }, [824] = { - [anon_sym_RBRACK] = ACTIONS(2228), + [anon_sym_RBRACK] = ACTIONS(2226), [sym_comment] = ACTIONS(50), }, [825] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2232), + [sym__concat] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2230), [sym_comment] = ACTIONS(50), }, [826] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2236), + [sym__concat] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2234), [sym_comment] = ACTIONS(50), }, [827] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2232), + [sym__concat] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2230), [sym_comment] = ACTIONS(50), }, [828] = { - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym__string_content] = ACTIONS(2154), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__string_content] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), [sym_comment] = ACTIONS(64), }, [829] = { - [anon_sym_AT] = ACTIONS(2238), + [anon_sym_AT] = ACTIONS(2236), [sym_comment] = ACTIONS(50), }, [830] = { - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym__string_content] = ACTIONS(2158), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym__string_content] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(1635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), [sym_comment] = ACTIONS(64), }, [831] = { - [anon_sym_AT] = ACTIONS(2240), + [anon_sym_AT] = ACTIONS(2238), [sym_comment] = ACTIONS(50), }, [832] = { - [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_RBRACK] = ACTIONS(2240), [sym_comment] = ACTIONS(50), }, [833] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2246), + [sym__concat] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2244), [sym_comment] = ACTIONS(50), }, [834] = { - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__string_content] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), - [anon_sym_BQUOTE] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym__string_content] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), [sym_comment] = ACTIONS(64), }, [835] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2250), + [sym__concat] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2248), [sym_comment] = ACTIONS(50), }, [836] = { - [sym__concat] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2246), + [sym__concat] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2244), [sym_comment] = ACTIONS(50), }, [837] = { - [anon_sym_RBRACK] = ACTIONS(2252), + [anon_sym_RBRACK] = ACTIONS(2250), [sym_comment] = ACTIONS(50), }, [838] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2256), + [sym__concat] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2254), [sym_comment] = ACTIONS(50), }, [839] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2260), + [sym__concat] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2258), [sym_comment] = ACTIONS(50), }, [840] = { - [sym__concat] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2256), + [sym__concat] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2254), [sym_comment] = ACTIONS(50), }, [841] = { - [anon_sym_RBRACK] = ACTIONS(2262), + [anon_sym_RBRACK] = ACTIONS(2260), [sym_comment] = ACTIONS(50), }, [842] = { - [anon_sym_RBRACK] = ACTIONS(2264), + [anon_sym_RBRACK] = ACTIONS(2262), [sym_comment] = ACTIONS(50), }, [843] = { - [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2264), [sym_comment] = ACTIONS(50), }, [844] = { @@ -23372,10 +23406,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2266), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2264), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -23383,44 +23417,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [845] = { - [sym_file_descriptor] = ACTIONS(2268), - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_AMP_GT] = ACTIONS(2270), - [anon_sym_AMP_GT_GT] = ACTIONS(2270), - [anon_sym_LT_AMP] = ACTIONS(2270), - [anon_sym_GT_AMP] = ACTIONS(2270), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_LT_LT_DASH] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym_raw_string] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), - [anon_sym_BQUOTE] = ACTIONS(2270), - [anon_sym_LT_LPAREN] = ACTIONS(2270), - [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_file_descriptor] = ACTIONS(2266), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2268), + [anon_sym_GT_GT] = ACTIONS(2268), + [anon_sym_AMP_GT] = ACTIONS(2268), + [anon_sym_AMP_GT_GT] = ACTIONS(2268), + [anon_sym_LT_AMP] = ACTIONS(2268), + [anon_sym_GT_AMP] = ACTIONS(2268), + [anon_sym_LT_LT] = ACTIONS(2268), + [anon_sym_LT_LT_DASH] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_raw_string] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2268), + [anon_sym_GT_LPAREN] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [846] = { [aux_sym_concatenation_repeat1] = STATE(1115), - [sym__concat] = ACTIONS(742), + [sym__concat] = ACTIONS(740), [anon_sym_RBRACE] = ACTIONS(282), [sym_comment] = ACTIONS(50), }, @@ -23430,10 +23464,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2272), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -23441,49 +23475,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [848] = { - [sym_file_descriptor] = ACTIONS(2274), - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), - [anon_sym_PIPE_AMP] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2276), - [anon_sym_AMP_GT] = ACTIONS(2276), - [anon_sym_AMP_GT_GT] = ACTIONS(2276), - [anon_sym_LT_AMP] = ACTIONS(2276), - [anon_sym_GT_AMP] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_LT_LT_DASH] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_raw_string] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_LT_LPAREN] = ACTIONS(2276), - [anon_sym_GT_LPAREN] = ACTIONS(2276), + [sym_file_descriptor] = ACTIONS(2272), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2274), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_AMP_GT] = ACTIONS(2274), + [anon_sym_AMP_GT_GT] = ACTIONS(2274), + [anon_sym_LT_AMP] = ACTIONS(2274), + [anon_sym_GT_AMP] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_LT_LT_DASH] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_raw_string] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [anon_sym_LT_LPAREN] = ACTIONS(2274), + [anon_sym_GT_LPAREN] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [849] = { [aux_sym_concatenation_repeat1] = STATE(1115), - [sym__concat] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(596), + [sym__concat] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [850] = { - [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2276), [sym_comment] = ACTIONS(50), }, [851] = { @@ -23492,10 +23526,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2278), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2276), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -23503,40 +23537,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [852] = { - [sym_file_descriptor] = ACTIONS(2280), - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_LT_LT_DASH] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [sym_raw_string] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), - [anon_sym_BQUOTE] = ACTIONS(2282), - [anon_sym_LT_LPAREN] = ACTIONS(2282), - [anon_sym_GT_LPAREN] = ACTIONS(2282), + [sym_file_descriptor] = ACTIONS(2278), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_GT] = ACTIONS(2280), + [anon_sym_GT_GT] = ACTIONS(2280), + [anon_sym_AMP_GT] = ACTIONS(2280), + [anon_sym_AMP_GT_GT] = ACTIONS(2280), + [anon_sym_LT_AMP] = ACTIONS(2280), + [anon_sym_GT_AMP] = ACTIONS(2280), + [anon_sym_LT_LT] = ACTIONS(2280), + [anon_sym_LT_LT_DASH] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [anon_sym_LT_LPAREN] = ACTIONS(2280), + [anon_sym_GT_LPAREN] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [853] = { [sym_string] = STATE(668), @@ -23544,10 +23578,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2284), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2282), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -23555,40 +23589,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [854] = { - [sym_file_descriptor] = ACTIONS(2286), - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2288), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_LT_LT_DASH] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [sym_raw_string] = ACTIONS(2288), - [anon_sym_DOLLAR] = ACTIONS(2288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2288), - [anon_sym_LT_LPAREN] = ACTIONS(2288), - [anon_sym_GT_LPAREN] = ACTIONS(2288), + [sym_file_descriptor] = ACTIONS(2284), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_AMP_GT] = ACTIONS(2286), + [anon_sym_AMP_GT_GT] = ACTIONS(2286), + [anon_sym_LT_AMP] = ACTIONS(2286), + [anon_sym_GT_AMP] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_LT_LT_DASH] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [855] = { [aux_sym_concatenation_repeat1] = STATE(1119), @@ -23596,55 +23630,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(282), [sym__concat] = ACTIONS(426), [sym_variable_name] = ACTIONS(282), - [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [856] = { - [sym_file_descriptor] = ACTIONS(1342), - [sym_word] = ACTIONS(1342), - [sym_variable_name] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(2290), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), + [sym_file_descriptor] = ACTIONS(1340), + [sym_word] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(2288), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(1340), + [anon_sym_GT_LPAREN] = ACTIONS(1340), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), }, [857] = { [sym_concatenation] = STATE(72), @@ -23654,10 +23688,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(688), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(2292), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(2290), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -23665,36 +23699,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [858] = { [aux_sym_concatenation_repeat1] = STATE(1119), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [859] = { [sym_concatenation] = STATE(441), @@ -23704,29 +23738,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(433), [sym_process_substitution] = STATE(433), [aux_sym_for_statement_repeat1] = STATE(718), - [sym_word] = ACTIONS(788), - [anon_sym_SEMI_SEMI] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_raw_string] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_LT_LPAREN] = ACTIONS(1400), - [anon_sym_GT_LPAREN] = ACTIONS(1400), + [sym_word] = ACTIONS(786), + [anon_sym_SEMI_SEMI] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_raw_string] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1398), + [anon_sym_GT_LPAREN] = ACTIONS(1398), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_LF] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2294), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_LF] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), }, [860] = { - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_PIPE_AMP] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_BQUOTE] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_PIPE_AMP] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_BQUOTE] = ACTIONS(2296), [sym_comment] = ACTIONS(50), }, [861] = { @@ -23759,7 +23793,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2300), + [anon_sym_done] = ACTIONS(2298), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -23790,16 +23824,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [862] = { - [anon_sym_PIPE] = ACTIONS(2302), - [anon_sym_RPAREN] = ACTIONS(2304), - [anon_sym_PIPE_AMP] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_BQUOTE] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_PIPE_AMP] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2302), + [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_BQUOTE] = ACTIONS(2302), [sym_comment] = ACTIONS(50), }, [863] = { - [anon_sym_fi] = ACTIONS(2306), + [anon_sym_fi] = ACTIONS(2304), [sym_comment] = ACTIONS(50), }, [864] = { @@ -23836,9 +23870,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2308), - [anon_sym_elif] = ACTIONS(810), - [anon_sym_else] = ACTIONS(812), + [anon_sym_fi] = ACTIONS(2306), + [anon_sym_elif] = ACTIONS(808), + [anon_sym_else] = ACTIONS(810), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -23871,9 +23905,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_elif_clause] = STATE(453), [sym_else_clause] = STATE(1124), [aux_sym_if_statement_repeat1] = STATE(732), - [anon_sym_fi] = ACTIONS(2306), - [anon_sym_elif] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1424), + [anon_sym_fi] = ACTIONS(2304), + [anon_sym_elif] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1422), [sym_comment] = ACTIONS(50), }, [866] = { @@ -23885,10 +23919,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1127), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2310), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2308), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -23896,14 +23930,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [867] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2312), + [anon_sym_SEMI_SEMI] = ACTIONS(2310), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2312), - [anon_sym_LF] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_LF] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), }, [868] = { [sym_case_item] = STATE(736), @@ -23914,10 +23948,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1130), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2314), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2312), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -23925,35 +23959,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [869] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2316), + [anon_sym_SEMI_SEMI] = ACTIONS(2314), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2316), - [anon_sym_LF] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LF] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), }, [870] = { [sym_compound_statement] = STATE(1132), - [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), [sym_comment] = ACTIONS(50), }, [871] = { - [sym_file_descriptor] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_PIPE_AMP] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_AMP_GT] = ACTIONS(2318), - [anon_sym_AMP_GT_GT] = ACTIONS(1463), - [anon_sym_LT_AMP] = ACTIONS(1463), - [anon_sym_GT_AMP] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_file_descriptor] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(2316), + [anon_sym_RPAREN] = ACTIONS(1461), + [anon_sym_PIPE_AMP] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(2316), + [anon_sym_GT] = ACTIONS(2316), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_AMP_GT] = ACTIONS(2316), + [anon_sym_AMP_GT_GT] = ACTIONS(1461), + [anon_sym_LT_AMP] = ACTIONS(1461), + [anon_sym_GT_AMP] = ACTIONS(1461), + [anon_sym_BQUOTE] = ACTIONS(1461), [sym_comment] = ACTIONS(50), }, [872] = { @@ -23990,7 +24024,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2318), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -24017,13 +24051,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [873] = { - [anon_sym_LT] = ACTIONS(2322), - [anon_sym_GT] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_AMP_GT] = ACTIONS(2322), - [anon_sym_AMP_GT_GT] = ACTIONS(2324), - [anon_sym_LT_AMP] = ACTIONS(2324), - [anon_sym_GT_AMP] = ACTIONS(2324), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_GT] = ACTIONS(2320), + [anon_sym_GT_GT] = ACTIONS(2322), + [anon_sym_AMP_GT] = ACTIONS(2320), + [anon_sym_AMP_GT_GT] = ACTIONS(2322), + [anon_sym_LT_AMP] = ACTIONS(2322), + [anon_sym_GT_AMP] = ACTIONS(2322), [sym_comment] = ACTIONS(50), }, [874] = { @@ -24033,96 +24067,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1135), [sym_command_substitution] = STATE(1135), [sym_process_substitution] = STATE(1135), - [sym_word] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym_raw_string] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_LT_LPAREN] = ACTIONS(2338), - [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_word] = ACTIONS(2324), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym_raw_string] = ACTIONS(2324), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_LT_LPAREN] = ACTIONS(2336), + [anon_sym_GT_LPAREN] = ACTIONS(2336), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2338), }, [875] = { - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_RPAREN] = ACTIONS(2344), - [anon_sym_PIPE_AMP] = ACTIONS(2344), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_BQUOTE] = ACTIONS(2344), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_PIPE_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_BQUOTE] = ACTIONS(2342), [sym_comment] = ACTIONS(50), }, [876] = { - [anon_sym_PIPE] = ACTIONS(2346), - [anon_sym_RPAREN] = ACTIONS(2348), - [anon_sym_PIPE_AMP] = ACTIONS(2348), - [anon_sym_AMP_AMP] = ACTIONS(2348), - [anon_sym_PIPE_PIPE] = ACTIONS(2348), - [anon_sym_BQUOTE] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_PIPE_AMP] = ACTIONS(2346), + [anon_sym_AMP_AMP] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2346), + [anon_sym_BQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(50), }, [877] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [878] = { [aux_sym_concatenation_repeat1] = STATE(1146), - [sym_word] = ACTIONS(760), - [sym__concat] = ACTIONS(2352), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), + [sym_word] = ACTIONS(758), + [sym__concat] = ACTIONS(2350), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [879] = { - [sym_word] = ACTIONS(760), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), + [sym_word] = ACTIONS(758), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [880] = { [sym_concatenation] = STATE(72), @@ -24132,10 +24166,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(1148), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(2354), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(2352), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -24143,14 +24177,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [881] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(1150), - [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2354), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -24160,25 +24194,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [882] = { [sym_special_variable_name] = STATE(1153), - [anon_sym_DOLLAR] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(2358), - [anon_sym_AT] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2358), - [anon_sym_QMARK] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2358), - [anon_sym_BANG] = ACTIONS(2358), - [anon_sym_0] = ACTIONS(2362), - [anon_sym__] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_QMARK] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_0] = ACTIONS(2360), + [anon_sym__] = ACTIONS(2360), }, [883] = { [sym_special_variable_name] = STATE(1156), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2362), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2364), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -24359,228 +24393,228 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [887] = { [aux_sym_concatenation_repeat1] = STATE(1163), - [sym_word] = ACTIONS(784), - [sym__concat] = ACTIONS(2352), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_PIPE_AMP] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), + [sym_word] = ACTIONS(782), + [sym__concat] = ACTIONS(2350), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP_AMP] = ACTIONS(782), + [anon_sym_PIPE_PIPE] = ACTIONS(782), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1670), }, [888] = { - [sym_file_descriptor] = ACTIONS(1629), - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(1629), - [anon_sym_AMP_GT] = ACTIONS(2154), - [anon_sym_AMP_GT_GT] = ACTIONS(1629), - [anon_sym_LT_AMP] = ACTIONS(1629), - [anon_sym_GT_AMP] = ACTIONS(1629), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_LT_LT_DASH] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_raw_string] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [anon_sym_LT_LPAREN] = ACTIONS(1629), - [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_file_descriptor] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_AMP_GT] = ACTIONS(2152), + [anon_sym_AMP_GT_GT] = ACTIONS(1627), + [anon_sym_LT_AMP] = ACTIONS(1627), + [anon_sym_GT_AMP] = ACTIONS(1627), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_LT_LT_DASH] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [sym_raw_string] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [anon_sym_LT_LPAREN] = ACTIONS(1627), + [anon_sym_GT_LPAREN] = ACTIONS(1627), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), }, [889] = { - [anon_sym_AT] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2366), [sym_comment] = ACTIONS(50), }, [890] = { - [sym_file_descriptor] = ACTIONS(1635), - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_PIPE_AMP] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_PIPE_PIPE] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(1635), - [anon_sym_AMP_GT] = ACTIONS(2158), - [anon_sym_AMP_GT_GT] = ACTIONS(1635), - [anon_sym_LT_AMP] = ACTIONS(1635), - [anon_sym_GT_AMP] = ACTIONS(1635), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_LT_LT_DASH] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_raw_string] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [anon_sym_LT_LPAREN] = ACTIONS(1635), - [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_file_descriptor] = ACTIONS(1633), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1633), + [anon_sym_PIPE_PIPE] = ACTIONS(1633), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(1633), + [anon_sym_AMP_GT] = ACTIONS(2156), + [anon_sym_AMP_GT_GT] = ACTIONS(1633), + [anon_sym_LT_AMP] = ACTIONS(1633), + [anon_sym_GT_AMP] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_LT_LT_DASH] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym_raw_string] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1633), + [anon_sym_BQUOTE] = ACTIONS(1633), + [anon_sym_LT_LPAREN] = ACTIONS(1633), + [anon_sym_GT_LPAREN] = ACTIONS(1633), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), }, [891] = { - [anon_sym_AT] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2368), [sym_comment] = ACTIONS(50), }, [892] = { - [anon_sym_RBRACK] = ACTIONS(2372), + [anon_sym_RBRACK] = ACTIONS(2370), [sym_comment] = ACTIONS(50), }, [893] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2376), + [sym__concat] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2374), [sym_comment] = ACTIONS(50), }, [894] = { - [sym_file_descriptor] = ACTIONS(1647), - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_PIPE_AMP] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_PIPE_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_AMP_GT] = ACTIONS(2168), - [anon_sym_AMP_GT_GT] = ACTIONS(1647), - [anon_sym_LT_AMP] = ACTIONS(1647), - [anon_sym_GT_AMP] = ACTIONS(1647), - [anon_sym_LT_LT] = ACTIONS(2168), - [anon_sym_LT_LT_DASH] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_raw_string] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(2168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_file_descriptor] = ACTIONS(1645), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_PIPE_AMP] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1645), + [anon_sym_PIPE_PIPE] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_AMP_GT] = ACTIONS(2166), + [anon_sym_AMP_GT_GT] = ACTIONS(1645), + [anon_sym_LT_AMP] = ACTIONS(1645), + [anon_sym_GT_AMP] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LT_LT_DASH] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym_raw_string] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1645), + [anon_sym_BQUOTE] = ACTIONS(1645), + [anon_sym_LT_LPAREN] = ACTIONS(1645), + [anon_sym_GT_LPAREN] = ACTIONS(1645), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), }, [895] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2380), + [sym__concat] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2378), [sym_comment] = ACTIONS(50), }, [896] = { - [sym__concat] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2376), + [sym__concat] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2374), [sym_comment] = ACTIONS(50), }, [897] = { - [anon_sym_RBRACK] = ACTIONS(2382), + [anon_sym_RBRACK] = ACTIONS(2380), [sym_comment] = ACTIONS(50), }, [898] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2386), + [sym__concat] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2384), [sym_comment] = ACTIONS(50), }, [899] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2390), + [sym__concat] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2388), [sym_comment] = ACTIONS(50), }, [900] = { - [sym__concat] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2386), + [sym__concat] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2384), [sym_comment] = ACTIONS(50), }, [901] = { [sym_file_redirect] = STATE(1176), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_RPAREN] = ACTIONS(2394), - [anon_sym_PIPE_AMP] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2394), - [anon_sym_PIPE_PIPE] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1700), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1700), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1700), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1700), + [anon_sym_LT_AMP] = ACTIONS(1700), + [anon_sym_GT_AMP] = ACTIONS(1700), [sym_comment] = ACTIONS(50), }, [902] = { [aux_sym_concatenation_repeat1] = STATE(906), - [sym_file_descriptor] = ACTIONS(723), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_PIPE_AMP] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_AMP_GT_GT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(723), - [anon_sym_GT_AMP] = ACTIONS(723), - [anon_sym_LT_LT] = ACTIONS(725), - [anon_sym_LT_LT_DASH] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(721), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(723), + [anon_sym_LT_LT_DASH] = ACTIONS(721), [sym_comment] = ACTIONS(50), }, [903] = { [aux_sym_concatenation_repeat1] = STATE(921), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(727), - [anon_sym_LT_AMP] = ACTIONS(727), - [anon_sym_GT_AMP] = ACTIONS(727), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(727), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_LT_LT_DASH] = ACTIONS(725), [sym_comment] = ACTIONS(50), }, [904] = { - [sym_file_descriptor] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_PIPE_AMP] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_AMP_GT_GT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(723), - [anon_sym_GT_AMP] = ACTIONS(723), - [anon_sym_LT_LT] = ACTIONS(725), - [anon_sym_LT_LT_DASH] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(723), + [anon_sym_LT_LT_DASH] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), [sym_comment] = ACTIONS(50), }, [905] = { @@ -24589,54 +24623,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1177), [sym_command_substitution] = STATE(1177), [sym_process_substitution] = STATE(1177), - [sym_word] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1182), - [anon_sym_GT_LPAREN] = ACTIONS(1182), + [sym_word] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(1170), + [sym_raw_string] = ACTIONS(2394), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1176), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LT_LPAREN] = ACTIONS(1180), + [anon_sym_GT_LPAREN] = ACTIONS(1180), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2396), }, [906] = { [aux_sym_concatenation_repeat1] = STATE(1179), [sym_file_descriptor] = ACTIONS(282), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(890), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT] = ACTIONS(888), [anon_sym_LT_LT_DASH] = ACTIONS(282), [sym_comment] = ACTIONS(50), }, [907] = { [sym_file_descriptor] = ACTIONS(446), [sym__concat] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(890), [anon_sym_RPAREN] = ACTIONS(446), [anon_sym_PIPE_AMP] = ACTIONS(446), [anon_sym_AMP_AMP] = ACTIONS(446), [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_AMP_GT] = ACTIONS(892), + [anon_sym_AMP_GT] = ACTIONS(890), [anon_sym_AMP_GT_GT] = ACTIONS(446), [anon_sym_LT_AMP] = ACTIONS(446), [anon_sym_GT_AMP] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(890), [anon_sym_LT_LT_DASH] = ACTIONS(446), [anon_sym_BQUOTE] = ACTIONS(446), [sym_comment] = ACTIONS(50), @@ -24646,7 +24680,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(2400), + [anon_sym_DQUOTE] = ACTIONS(2398), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -24655,80 +24689,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [909] = { - [sym_file_descriptor] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_PIPE_AMP] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(466), - [anon_sym_AMP_GT] = ACTIONS(478), - [anon_sym_AMP_GT_GT] = ACTIONS(466), - [anon_sym_LT_AMP] = ACTIONS(466), - [anon_sym_GT_AMP] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_LT_LT_DASH] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), + [sym_file_descriptor] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(464), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_AMP_GT] = ACTIONS(476), + [anon_sym_AMP_GT_GT] = ACTIONS(464), + [anon_sym_LT_AMP] = ACTIONS(464), + [anon_sym_GT_AMP] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_LT_LT_DASH] = ACTIONS(464), + [anon_sym_BQUOTE] = ACTIONS(464), [sym_comment] = ACTIONS(50), }, [910] = { - [sym_file_descriptor] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_PIPE_AMP] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(896), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_AMP_GT] = ACTIONS(896), - [anon_sym_AMP_GT_GT] = ACTIONS(470), - [anon_sym_LT_AMP] = ACTIONS(470), - [anon_sym_GT_AMP] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_LT_LT_DASH] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), + [sym_file_descriptor] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_AMP_GT] = ACTIONS(894), + [anon_sym_AMP_GT_GT] = ACTIONS(468), + [anon_sym_LT_AMP] = ACTIONS(468), + [anon_sym_GT_AMP] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_LT_LT_DASH] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), [sym_comment] = ACTIONS(50), }, [911] = { - [sym_file_descriptor] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_AMP_GT] = ACTIONS(898), - [anon_sym_AMP_GT_GT] = ACTIONS(474), - [anon_sym_LT_AMP] = ACTIONS(474), - [anon_sym_GT_AMP] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_LT_LT_DASH] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), + [sym_file_descriptor] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_PIPE_AMP] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_AMP_GT] = ACTIONS(896), + [anon_sym_AMP_GT_GT] = ACTIONS(472), + [anon_sym_LT_AMP] = ACTIONS(472), + [anon_sym_GT_AMP] = ACTIONS(472), + [anon_sym_LT_LT] = ACTIONS(896), + [anon_sym_LT_LT_DASH] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), [sym_comment] = ACTIONS(50), }, [912] = { [sym_special_variable_name] = STATE(1182), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2400), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -24737,44 +24771,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [913] = { - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2408), - [anon_sym_COLON] = ACTIONS(2410), - [anon_sym_COLON_QMARK] = ACTIONS(2408), - [anon_sym_COLON_DASH] = ACTIONS(2408), - [anon_sym_PERCENT] = ACTIONS(2408), - [anon_sym_SLASH] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_EQ] = ACTIONS(2406), + [anon_sym_COLON] = ACTIONS(2408), + [anon_sym_COLON_QMARK] = ACTIONS(2406), + [anon_sym_COLON_DASH] = ACTIONS(2406), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2406), [sym_comment] = ACTIONS(50), }, [914] = { - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(2416), - [anon_sym_COLON] = ACTIONS(2418), - [anon_sym_COLON_QMARK] = ACTIONS(2416), - [anon_sym_COLON_DASH] = ACTIONS(2416), - [anon_sym_PERCENT] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_EQ] = ACTIONS(2414), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_COLON_QMARK] = ACTIONS(2414), + [anon_sym_COLON_DASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), [sym_comment] = ACTIONS(50), }, [915] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [916] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -24794,21 +24828,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [917] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(2418), [sym_comment] = ACTIONS(50), }, [918] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -24821,29 +24855,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(2418), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [919] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [920] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2422), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -24864,72 +24898,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [921] = { [aux_sym_concatenation_repeat1] = STATE(1179), - [sym_file_descriptor] = ACTIONS(596), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(920), + [anon_sym_LT_LT_DASH] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [922] = { - [sym_file_descriptor] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_AMP_GT] = ACTIONS(2424), - [anon_sym_AMP_GT_GT] = ACTIONS(1924), - [anon_sym_LT_AMP] = ACTIONS(1924), - [anon_sym_GT_AMP] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_LT_LT_DASH] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_PIPE_AMP] = ACTIONS(1922), + [anon_sym_AMP_AMP] = ACTIONS(1922), + [anon_sym_PIPE_PIPE] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_GT_GT] = ACTIONS(1922), + [anon_sym_AMP_GT] = ACTIONS(2422), + [anon_sym_AMP_GT_GT] = ACTIONS(1922), + [anon_sym_LT_AMP] = ACTIONS(1922), + [anon_sym_GT_AMP] = ACTIONS(1922), + [anon_sym_LT_LT] = ACTIONS(2422), + [anon_sym_LT_LT_DASH] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), [sym_comment] = ACTIONS(50), }, [923] = { [sym_simple_expansion] = STATE(660), [sym_expansion] = STATE(660), [aux_sym_heredoc_repeat1] = STATE(960), - [sym__heredoc_middle] = ACTIONS(1248), - [sym__heredoc_end] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [sym__heredoc_middle] = ACTIONS(1246), + [sym__heredoc_end] = ACTIONS(2424), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), [sym_comment] = ACTIONS(50), }, [924] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(619), - [sym_file_descriptor] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(554), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), + [sym_file_descriptor] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_RPAREN] = ACTIONS(2428), + [anon_sym_PIPE_AMP] = ACTIONS(2428), + [anon_sym_AMP_AMP] = ACTIONS(2428), + [anon_sym_PIPE_PIPE] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(552), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), [sym_comment] = ACTIONS(50), }, [925] = { @@ -24938,69 +24972,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(282), [sym__concat] = ACTIONS(426), [sym_variable_name] = ACTIONS(282), - [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), [anon_sym_DQUOTE] = ACTIONS(282), [sym_raw_string] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(888), [anon_sym_DOLLAR_LBRACE] = ACTIONS(282), [anon_sym_DOLLAR_LPAREN] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [anon_sym_LT_LPAREN] = ACTIONS(282), [anon_sym_GT_LPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [926] = { [aux_sym_concatenation_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(596), - [sym_word] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym_word] = ACTIONS(594), [sym__concat] = ACTIONS(426), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(596), - [sym_raw_string] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(596), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(596), - [anon_sym_GT_LPAREN] = ACTIONS(596), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [sym_raw_string] = ACTIONS(594), + [anon_sym_DOLLAR] = ACTIONS(920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), + [anon_sym_LT_LPAREN] = ACTIONS(594), + [anon_sym_GT_LPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [927] = { [sym_compound_statement] = STATE(1193), - [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), [sym_comment] = ACTIONS(50), }, [928] = { - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_GT] = ACTIONS(2432), - [anon_sym_GT_GT] = ACTIONS(2434), - [anon_sym_AMP_GT] = ACTIONS(2432), - [anon_sym_AMP_GT_GT] = ACTIONS(2434), - [anon_sym_LT_AMP] = ACTIONS(2434), - [anon_sym_GT_AMP] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_AMP_GT] = ACTIONS(2430), + [anon_sym_AMP_GT_GT] = ACTIONS(2432), + [anon_sym_LT_AMP] = ACTIONS(2432), + [anon_sym_GT_AMP] = ACTIONS(2432), [sym_comment] = ACTIONS(50), }, [929] = { @@ -25010,301 +25044,301 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1195), [sym_command_substitution] = STATE(1195), [sym_process_substitution] = STATE(1195), - [sym_word] = ACTIONS(2436), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym_raw_string] = ACTIONS(2436), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_LT_LPAREN] = ACTIONS(2338), - [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_word] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym_raw_string] = ACTIONS(2434), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_LT_LPAREN] = ACTIONS(2336), + [anon_sym_GT_LPAREN] = ACTIONS(2336), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2436), }, [930] = { [aux_sym_concatenation_repeat1] = STATE(1197), - [sym_word] = ACTIONS(760), - [sym__concat] = ACTIONS(2352), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), + [sym_word] = ACTIONS(758), + [sym__concat] = ACTIONS(2350), + [sym_variable_name] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_PIPE_AMP] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_BQUOTE] = ACTIONS(758), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1666), }, [931] = { [aux_sym_concatenation_repeat1] = STATE(1198), - [sym_word] = ACTIONS(784), - [sym__concat] = ACTIONS(2352), - [sym_variable_name] = ACTIONS(784), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_PIPE_AMP] = ACTIONS(784), - [anon_sym_AMP_AMP] = ACTIONS(784), - [anon_sym_PIPE_PIPE] = ACTIONS(784), - [anon_sym_BQUOTE] = ACTIONS(784), + [sym_word] = ACTIONS(782), + [sym__concat] = ACTIONS(2350), + [sym_variable_name] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_PIPE_AMP] = ACTIONS(782), + [anon_sym_AMP_AMP] = ACTIONS(782), + [anon_sym_PIPE_PIPE] = ACTIONS(782), + [anon_sym_BQUOTE] = ACTIONS(782), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1670), }, [932] = { [sym_file_redirect] = STATE(1176), - [sym_file_descriptor] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_PIPE_AMP] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2394), - [anon_sym_PIPE_PIPE] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_GT] = ACTIONS(1856), - [anon_sym_GT_GT] = ACTIONS(1858), - [anon_sym_AMP_GT] = ACTIONS(1856), - [anon_sym_AMP_GT_GT] = ACTIONS(1858), - [anon_sym_LT_AMP] = ACTIONS(1858), - [anon_sym_GT_AMP] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(2394), + [sym_file_descriptor] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PIPE_AMP] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_GT] = ACTIONS(1856), + [anon_sym_AMP_GT] = ACTIONS(1854), + [anon_sym_AMP_GT_GT] = ACTIONS(1856), + [anon_sym_LT_AMP] = ACTIONS(1856), + [anon_sym_GT_AMP] = ACTIONS(1856), + [anon_sym_BQUOTE] = ACTIONS(2392), [sym_comment] = ACTIONS(50), }, [933] = { [aux_sym_concatenation_repeat1] = STATE(935), - [sym_file_descriptor] = ACTIONS(723), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(725), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_AMP_GT] = ACTIONS(725), - [anon_sym_AMP_GT_GT] = ACTIONS(723), - [anon_sym_LT_AMP] = ACTIONS(723), - [anon_sym_GT_AMP] = ACTIONS(723), - [anon_sym_LT_LT] = ACTIONS(725), - [anon_sym_LT_LT_DASH] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(723), + [sym_file_descriptor] = ACTIONS(721), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(723), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(723), + [anon_sym_LT_LT_DASH] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), [sym_comment] = ACTIONS(50), }, [934] = { [aux_sym_concatenation_repeat1] = STATE(936), - [sym_file_descriptor] = ACTIONS(727), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(727), - [anon_sym_AMP_GT] = ACTIONS(729), - [anon_sym_AMP_GT_GT] = ACTIONS(727), - [anon_sym_LT_AMP] = ACTIONS(727), - [anon_sym_GT_AMP] = ACTIONS(727), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_LT_LT_DASH] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), [sym_comment] = ACTIONS(50), }, [935] = { [aux_sym_concatenation_repeat1] = STATE(1199), [sym_file_descriptor] = ACTIONS(282), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(890), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(888), [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_AMP_GT] = ACTIONS(890), + [anon_sym_AMP_GT] = ACTIONS(888), [anon_sym_AMP_GT_GT] = ACTIONS(282), [anon_sym_LT_AMP] = ACTIONS(282), [anon_sym_GT_AMP] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_LT_LT] = ACTIONS(888), [anon_sym_LT_LT_DASH] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [sym_comment] = ACTIONS(50), }, [936] = { [aux_sym_concatenation_repeat1] = STATE(1199), - [sym_file_descriptor] = ACTIONS(596), - [sym__concat] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(596), - [anon_sym_LT_AMP] = ACTIONS(596), - [anon_sym_GT_AMP] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), + [sym_file_descriptor] = ACTIONS(594), + [sym__concat] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(594), + [anon_sym_LT_AMP] = ACTIONS(594), + [anon_sym_GT_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(920), + [anon_sym_LT_LT_DASH] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [937] = { [sym_file_redirect] = STATE(345), [sym_heredoc_redirect] = STATE(345), [aux_sym_command_repeat2] = STATE(637), - [sym_file_descriptor] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_PIPE_AMP] = ACTIONS(2430), - [anon_sym_AMP_AMP] = ACTIONS(2430), - [anon_sym_PIPE_PIPE] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(584), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(560), - [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_file_descriptor] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_PIPE_AMP] = ACTIONS(2428), + [anon_sym_AMP_AMP] = ACTIONS(2428), + [anon_sym_PIPE_PIPE] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_AMP_GT] = ACTIONS(582), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(584), + [anon_sym_GT_AMP] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_LT_LT_DASH] = ACTIONS(558), + [anon_sym_BQUOTE] = ACTIONS(2428), [sym_comment] = ACTIONS(50), }, [938] = { - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_SEMI_SEMI] = ACTIONS(2440), - [anon_sym_PIPE_AMP] = ACTIONS(2440), - [anon_sym_AMP_AMP] = ACTIONS(2440), - [anon_sym_PIPE_PIPE] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_SEMI_SEMI] = ACTIONS(2438), + [anon_sym_PIPE_AMP] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LF] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_LF] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), }, [939] = { - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [940] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_AMP_GT] = ACTIONS(737), - [anon_sym_AMP_GT_GT] = ACTIONS(737), - [anon_sym_LT_AMP] = ACTIONS(737), - [anon_sym_GT_AMP] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_LT_LT_DASH] = ACTIONS(737), + [sym_file_descriptor] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_AMP_GT] = ACTIONS(735), + [anon_sym_AMP_GT_GT] = ACTIONS(735), + [anon_sym_LT_AMP] = ACTIONS(735), + [anon_sym_GT_AMP] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(735), + [anon_sym_LT_LT_DASH] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [941] = { [aux_sym_concatenation_repeat1] = STATE(941), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym__concat] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [942] = { - [sym_file_descriptor] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1039), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1039), - [anon_sym_LT_AMP] = ACTIONS(1039), - [anon_sym_GT_AMP] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1039), - [anon_sym_LT_LT_DASH] = ACTIONS(1039), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_AMP_GT] = ACTIONS(1037), + [anon_sym_AMP_GT_GT] = ACTIONS(1037), + [anon_sym_LT_AMP] = ACTIONS(1037), + [anon_sym_GT_AMP] = ACTIONS(1037), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_LT_LT_DASH] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [943] = { - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2445), [sym_comment] = ACTIONS(50), }, [944] = { - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2449), [sym_comment] = ACTIONS(50), }, [945] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_AMP_GT] = ACTIONS(1068), - [anon_sym_AMP_GT_GT] = ACTIONS(1068), - [anon_sym_LT_AMP] = ACTIONS(1068), - [anon_sym_GT_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_LT_LT_DASH] = ACTIONS(1068), + [sym_file_descriptor] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_GT] = ACTIONS(1066), + [anon_sym_GT_GT] = ACTIONS(1066), + [anon_sym_AMP_GT] = ACTIONS(1066), + [anon_sym_AMP_GT_GT] = ACTIONS(1066), + [anon_sym_LT_AMP] = ACTIONS(1066), + [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1066), + [anon_sym_LT_LT_DASH] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [946] = { - [anon_sym_AT] = ACTIONS(2453), + [anon_sym_AT] = ACTIONS(2451), [sym_comment] = ACTIONS(50), }, [947] = { @@ -25314,10 +25348,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1205), [sym_command_substitution] = STATE(1205), [sym_process_substitution] = STATE(1205), - [sym_word] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2457), + [sym_word] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2455), + [sym_raw_string] = ACTIONS(2453), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -25325,33 +25359,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2457), }, [948] = { - [sym_file_descriptor] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1080), - [anon_sym_LT_AMP] = ACTIONS(1080), - [anon_sym_GT_AMP] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_LT_LT_DASH] = ACTIONS(1080), + [sym_file_descriptor] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_AMP_GT] = ACTIONS(1078), + [anon_sym_AMP_GT_GT] = ACTIONS(1078), + [anon_sym_LT_AMP] = ACTIONS(1078), + [anon_sym_GT_AMP] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_LT_LT_DASH] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [949] = { - [anon_sym_AT] = ACTIONS(2461), + [anon_sym_AT] = ACTIONS(2459), [sym_comment] = ACTIONS(50), }, [950] = { @@ -25361,10 +25395,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1210), [sym_command_substitution] = STATE(1210), [sym_process_substitution] = STATE(1210), - [sym_word] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2449), + [sym_word] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2447), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2463), + [sym_raw_string] = ACTIONS(2461), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -25372,90 +25406,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2463), }, [951] = { - [sym_file_descriptor] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), - [anon_sym_PIPE_AMP] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_AMP_GT] = ACTIONS(1164), - [anon_sym_AMP_GT_GT] = ACTIONS(1164), - [anon_sym_LT_AMP] = ACTIONS(1164), - [anon_sym_GT_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1164), - [anon_sym_LT_LT_DASH] = ACTIONS(1164), + [sym_file_descriptor] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_GT_GT] = ACTIONS(1162), + [anon_sym_AMP_GT] = ACTIONS(1162), + [anon_sym_AMP_GT_GT] = ACTIONS(1162), + [anon_sym_LT_AMP] = ACTIONS(1162), + [anon_sym_GT_AMP] = ACTIONS(1162), + [anon_sym_LT_LT] = ACTIONS(1162), + [anon_sym_LT_LT_DASH] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [952] = { - [sym_file_descriptor] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_LT_LT_DASH] = ACTIONS(1216), + [sym_file_descriptor] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_AMP_GT] = ACTIONS(1214), + [anon_sym_AMP_GT_GT] = ACTIONS(1214), + [anon_sym_LT_AMP] = ACTIONS(1214), + [anon_sym_GT_AMP] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_LT_LT_DASH] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [953] = { - [sym__heredoc_middle] = ACTIONS(466), - [sym__heredoc_end] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(466), + [sym__heredoc_middle] = ACTIONS(464), + [sym__heredoc_end] = ACTIONS(464), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(464), [sym_comment] = ACTIONS(50), }, [954] = { - [sym__heredoc_middle] = ACTIONS(470), - [sym__heredoc_end] = ACTIONS(470), - [anon_sym_DOLLAR] = ACTIONS(896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(470), + [sym__heredoc_middle] = ACTIONS(468), + [sym__heredoc_end] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(468), [sym_comment] = ACTIONS(50), }, [955] = { - [sym__heredoc_middle] = ACTIONS(474), - [sym__heredoc_end] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(474), + [sym__heredoc_middle] = ACTIONS(472), + [sym__heredoc_end] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(472), [sym_comment] = ACTIONS(50), }, [956] = { [sym_special_variable_name] = STATE(1214), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2465), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -25464,398 +25498,398 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [957] = { - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_EQ] = ACTIONS(2473), - [anon_sym_COLON] = ACTIONS(2475), - [anon_sym_COLON_QMARK] = ACTIONS(2473), - [anon_sym_COLON_DASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_EQ] = ACTIONS(2471), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_COLON_QMARK] = ACTIONS(2471), + [anon_sym_COLON_DASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2471), + [anon_sym_SLASH] = ACTIONS(2471), [sym_comment] = ACTIONS(50), }, [958] = { - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_COLON_QMARK] = ACTIONS(2481), - [anon_sym_COLON_DASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_COLON_QMARK] = ACTIONS(2479), + [anon_sym_COLON_DASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2479), + [anon_sym_SLASH] = ACTIONS(2479), [sym_comment] = ACTIONS(50), }, [959] = { - [sym_file_descriptor] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_SEMI_SEMI] = ACTIONS(2487), - [anon_sym_PIPE_AMP] = ACTIONS(2487), - [anon_sym_AMP_AMP] = ACTIONS(2487), - [anon_sym_PIPE_PIPE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(2487), - [anon_sym_AMP_GT] = ACTIONS(2487), - [anon_sym_AMP_GT_GT] = ACTIONS(2487), - [anon_sym_LT_AMP] = ACTIONS(2487), - [anon_sym_GT_AMP] = ACTIONS(2487), - [anon_sym_LT_LT] = ACTIONS(2487), - [anon_sym_LT_LT_DASH] = ACTIONS(2487), + [sym_file_descriptor] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_RPAREN] = ACTIONS(2485), + [anon_sym_SEMI_SEMI] = ACTIONS(2485), + [anon_sym_PIPE_AMP] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_PIPE_PIPE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_GT] = ACTIONS(2485), + [anon_sym_GT_GT] = ACTIONS(2485), + [anon_sym_AMP_GT] = ACTIONS(2485), + [anon_sym_AMP_GT_GT] = ACTIONS(2485), + [anon_sym_LT_AMP] = ACTIONS(2485), + [anon_sym_GT_AMP] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2485), + [anon_sym_LT_LT_DASH] = ACTIONS(2485), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_LF] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_LF] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), }, [960] = { [sym_simple_expansion] = STATE(660), [sym_expansion] = STATE(660), [aux_sym_heredoc_repeat1] = STATE(960), - [sym__heredoc_middle] = ACTIONS(2489), - [sym__heredoc_end] = ACTIONS(2492), - [anon_sym_DOLLAR] = ACTIONS(2494), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2497), + [sym__heredoc_middle] = ACTIONS(2487), + [sym__heredoc_end] = ACTIONS(2490), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2495), [sym_comment] = ACTIONS(50), }, [961] = { - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_RBRACK] = ACTIONS(1629), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_RBRACK] = ACTIONS(1627), [sym_comment] = ACTIONS(50), }, [962] = { - [anon_sym_AT] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), [sym_comment] = ACTIONS(50), }, [963] = { - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1635), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_RBRACK] = ACTIONS(1635), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_RBRACK] = ACTIONS(1633), [sym_comment] = ACTIONS(50), }, [964] = { - [anon_sym_AT] = ACTIONS(2502), + [anon_sym_AT] = ACTIONS(2500), [sym_comment] = ACTIONS(50), }, [965] = { - [anon_sym_RBRACK] = ACTIONS(2504), + [anon_sym_RBRACK] = ACTIONS(2502), [sym_comment] = ACTIONS(50), }, [966] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2508), + [sym__concat] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2506), [sym_comment] = ACTIONS(50), }, [967] = { - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_RBRACK] = ACTIONS(1647), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_RBRACK] = ACTIONS(1645), [sym_comment] = ACTIONS(50), }, [968] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2512), + [sym__concat] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2510), [sym_comment] = ACTIONS(50), }, [969] = { - [sym__concat] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2508), + [sym__concat] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2506), [sym_comment] = ACTIONS(50), }, [970] = { - [anon_sym_RBRACK] = ACTIONS(2514), + [anon_sym_RBRACK] = ACTIONS(2512), [sym_comment] = ACTIONS(50), }, [971] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2518), + [sym__concat] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2516), [sym_comment] = ACTIONS(50), }, [972] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2522), + [sym__concat] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2520), [sym_comment] = ACTIONS(50), }, [973] = { - [sym__concat] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2518), + [sym__concat] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2516), [sym_comment] = ACTIONS(50), }, [974] = { [aux_sym_concatenation_repeat1] = STATE(974), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1525), + }, + [975] = { + [sym_file_descriptor] = ACTIONS(1627), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [sym_variable_name] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(1629), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), + }, + [976] = { + [anon_sym_AT] = ACTIONS(2522), + [sym_comment] = ACTIONS(50), + }, + [977] = { + [sym_file_descriptor] = ACTIONS(1633), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [sym_variable_name] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_AMP_GT] = ACTIONS(1635), + [anon_sym_AMP_GT_GT] = ACTIONS(1635), + [anon_sym_LT_AMP] = ACTIONS(1635), + [anon_sym_GT_AMP] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_raw_string] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(1635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + }, + [978] = { + [anon_sym_AT] = ACTIONS(2524), + [sym_comment] = ACTIONS(50), + }, + [979] = { + [anon_sym_RBRACK] = ACTIONS(2526), + [sym_comment] = ACTIONS(50), + }, + [980] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2530), + [sym_comment] = ACTIONS(50), + }, + [981] = { + [sym_file_descriptor] = ACTIONS(1645), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [sym_variable_name] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_GT_GT] = ACTIONS(1647), + [anon_sym_AMP_GT] = ACTIONS(1647), + [anon_sym_AMP_GT_GT] = ACTIONS(1647), + [anon_sym_LT_AMP] = ACTIONS(1647), + [anon_sym_GT_AMP] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), + }, + [982] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2534), + [sym_comment] = ACTIONS(50), + }, + [983] = { + [sym__concat] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2530), + [sym_comment] = ACTIONS(50), + }, + [984] = { + [anon_sym_RBRACK] = ACTIONS(2536), + [sym_comment] = ACTIONS(50), + }, + [985] = { + [aux_sym_concatenation_repeat1] = STATE(846), + [sym__concat] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2540), + [sym_comment] = ACTIONS(50), + }, + [986] = { + [aux_sym_concatenation_repeat1] = STATE(849), + [sym__concat] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2544), + [sym_comment] = ACTIONS(50), + }, + [987] = { + [sym__concat] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2540), + [sym_comment] = ACTIONS(50), + }, + [988] = { + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(731), [anon_sym_DQUOTE] = ACTIONS(731), [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_DOLLAR] = ACTIONS(731), [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), [anon_sym_BQUOTE] = ACTIONS(731), [anon_sym_LT_LPAREN] = ACTIONS(731), [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), - }, - [975] = { - [sym_file_descriptor] = ACTIONS(1629), - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [sym_variable_name] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), - [anon_sym_PIPE_AMP] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_PIPE_PIPE] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1631), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_AMP_GT] = ACTIONS(1631), - [anon_sym_AMP_GT_GT] = ACTIONS(1631), - [anon_sym_LT_AMP] = ACTIONS(1631), - [anon_sym_GT_AMP] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_raw_string] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [anon_sym_LT_LPAREN] = ACTIONS(1631), - [anon_sym_GT_LPAREN] = ACTIONS(1631), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - }, - [976] = { - [anon_sym_AT] = ACTIONS(2524), - [sym_comment] = ACTIONS(50), - }, - [977] = { - [sym_file_descriptor] = ACTIONS(1635), - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [sym_variable_name] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), - [anon_sym_PIPE_AMP] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1637), - [anon_sym_PIPE_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1637), - [anon_sym_AMP_GT] = ACTIONS(1637), - [anon_sym_AMP_GT_GT] = ACTIONS(1637), - [anon_sym_LT_AMP] = ACTIONS(1637), - [anon_sym_GT_AMP] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym_raw_string] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1637), - [anon_sym_LT_LPAREN] = ACTIONS(1637), - [anon_sym_GT_LPAREN] = ACTIONS(1637), - [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), - }, - [978] = { - [anon_sym_AT] = ACTIONS(2526), - [sym_comment] = ACTIONS(50), - }, - [979] = { - [anon_sym_RBRACK] = ACTIONS(2528), - [sym_comment] = ACTIONS(50), - }, - [980] = { - [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(50), - }, - [981] = { - [sym_file_descriptor] = ACTIONS(1647), - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [sym_variable_name] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), - [anon_sym_PIPE_AMP] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1649), - [anon_sym_AMP_GT] = ACTIONS(1649), - [anon_sym_AMP_GT_GT] = ACTIONS(1649), - [anon_sym_LT_AMP] = ACTIONS(1649), - [anon_sym_GT_AMP] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_raw_string] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), - [anon_sym_BQUOTE] = ACTIONS(1649), - [anon_sym_LT_LPAREN] = ACTIONS(1649), - [anon_sym_GT_LPAREN] = ACTIONS(1649), - [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), - }, - [982] = { - [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2536), - [sym_comment] = ACTIONS(50), - }, - [983] = { - [sym__concat] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(50), - }, - [984] = { - [anon_sym_RBRACK] = ACTIONS(2538), - [sym_comment] = ACTIONS(50), - }, - [985] = { - [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2542), - [sym_comment] = ACTIONS(50), - }, - [986] = { - [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2546), - [sym_comment] = ACTIONS(50), - }, - [987] = { - [sym__concat] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2542), - [sym_comment] = ACTIONS(50), - }, - [988] = { - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), - [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [989] = { - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_raw_string] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(735), + [anon_sym_BQUOTE] = ACTIONS(735), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [sym_identifier] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [990] = { [aux_sym_concatenation_repeat1] = STATE(990), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(2548), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(2546), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [991] = { - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [sym_raw_string] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_LT_LPAREN] = ACTIONS(1039), - [anon_sym_GT_LPAREN] = ACTIONS(1039), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_raw_string] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1037), + [anon_sym_BQUOTE] = ACTIONS(1037), + [anon_sym_LT_LPAREN] = ACTIONS(1037), + [anon_sym_GT_LPAREN] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [992] = { - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2551), [sym_comment] = ACTIONS(50), }, [993] = { - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), [sym_comment] = ACTIONS(50), }, [994] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LT_LPAREN] = ACTIONS(1068), - [anon_sym_GT_LPAREN] = ACTIONS(1068), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_raw_string] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), + [anon_sym_BQUOTE] = ACTIONS(1066), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [995] = { - [anon_sym_AT] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2557), [sym_comment] = ACTIONS(50), }, [996] = { @@ -25865,10 +25899,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1250), [sym_command_substitution] = STATE(1250), [sym_process_substitution] = STATE(1250), - [sym_word] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2563), + [sym_word] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2561), + [sym_raw_string] = ACTIONS(2559), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -25876,28 +25910,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2563), }, [997] = { - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym_raw_string] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1080), - [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_raw_string] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_LT_LPAREN] = ACTIONS(1078), + [anon_sym_GT_LPAREN] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [998] = { - [anon_sym_AT] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2565), [sym_comment] = ACTIONS(50), }, [999] = { @@ -25907,10 +25941,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1255), [sym_command_substitution] = STATE(1255), [sym_process_substitution] = STATE(1255), - [sym_word] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2555), + [sym_word] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2553), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2569), + [sym_raw_string] = ACTIONS(2567), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -25918,55 +25952,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2569), }, [1000] = { - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [sym_raw_string] = ACTIONS(1164), - [anon_sym_DOLLAR] = ACTIONS(1164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [anon_sym_LT_LPAREN] = ACTIONS(1164), - [anon_sym_GT_LPAREN] = ACTIONS(1164), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [sym_raw_string] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1162), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_LT_LPAREN] = ACTIONS(1162), + [anon_sym_GT_LPAREN] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [1001] = { - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_raw_string] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1216), - [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_raw_string] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1214), + [anon_sym_GT_LPAREN] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [1002] = { - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_RPAREN] = ACTIONS(2573), - [anon_sym_SEMI_SEMI] = ACTIONS(2573), - [anon_sym_PIPE_AMP] = ACTIONS(2573), - [anon_sym_AMP_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2573), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [anon_sym_SEMI_SEMI] = ACTIONS(2571), + [anon_sym_PIPE_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_LF] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LF] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), }, [1003] = { [sym__terminated_statement] = STATE(451), @@ -25999,9 +26033,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2575), - [anon_sym_elif] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2575), + [anon_sym_fi] = ACTIONS(2573), + [anon_sym_elif] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -26031,40 +26065,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [1004] = { - [sym_file_descriptor] = ACTIONS(600), - [sym_word] = ACTIONS(600), - [sym_variable_name] = ACTIONS(600), - [anon_sym_for] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_fi] = ACTIONS(602), - [anon_sym_case] = ACTIONS(602), - [anon_sym_function] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(600), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_AMP_GT] = ACTIONS(602), - [anon_sym_AMP_GT_GT] = ACTIONS(600), - [anon_sym_LT_AMP] = ACTIONS(600), - [anon_sym_GT_AMP] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(600), - [sym_raw_string] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), - [anon_sym_BQUOTE] = ACTIONS(600), - [anon_sym_LT_LPAREN] = ACTIONS(600), - [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(598), + [sym_word] = ACTIONS(598), + [sym_variable_name] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_fi] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_function] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(598), + [anon_sym_declare] = ACTIONS(600), + [anon_sym_typeset] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_readonly] = ACTIONS(600), + [anon_sym_local] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_AMP_GT] = ACTIONS(600), + [anon_sym_AMP_GT_GT] = ACTIONS(598), + [anon_sym_LT_AMP] = ACTIONS(598), + [anon_sym_GT_AMP] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [sym_raw_string] = ACTIONS(598), + [anon_sym_DOLLAR] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(598), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(598), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(598), + [anon_sym_GT_LPAREN] = ACTIONS(598), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(604), + [sym_identifier] = ACTIONS(602), }, [1005] = { [sym__terminated_statement] = STATE(723), @@ -26091,55 +26125,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(1005), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_if] = ACTIONS(657), - [anon_sym_fi] = ACTIONS(2059), - [anon_sym_case] = ACTIONS(660), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_fi] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(658), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [1006] = { - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_RPAREN] = ACTIONS(2577), - [anon_sym_SEMI_SEMI] = ACTIONS(2577), - [anon_sym_PIPE_AMP] = ACTIONS(2577), - [anon_sym_AMP_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2577), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_RPAREN] = ACTIONS(2575), + [anon_sym_SEMI_SEMI] = ACTIONS(2575), + [anon_sym_PIPE_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2577), - [anon_sym_LF] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_LF] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), }, [1007] = { - [anon_sym_fi] = ACTIONS(2579), + [anon_sym_fi] = ACTIONS(2577), [sym_comment] = ACTIONS(50), }, [1008] = { @@ -26149,9 +26183,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1260), [sym_command_substitution] = STATE(1260), [sym_process_substitution] = STATE(1260), - [sym_word] = ACTIONS(2581), + [sym_word] = ACTIONS(2579), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2581), + [sym_raw_string] = ACTIONS(2579), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26159,7 +26193,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2581), }, [1009] = { [sym__terminated_statement] = STATE(23), @@ -26193,7 +26227,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2585), + [anon_sym_SEMI_SEMI] = ACTIONS(2583), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -26223,13 +26257,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1010] = { [aux_sym_case_item_repeat1] = STATE(1266), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2585), [sym_comment] = ACTIONS(50), }, [1011] = { [aux_sym_concatenation_repeat1] = STATE(1267), - [sym__concat] = ACTIONS(742), + [sym__concat] = ACTIONS(740), [anon_sym_PIPE] = ACTIONS(282), [anon_sym_RPAREN] = ACTIONS(282), [sym_comment] = ACTIONS(50), @@ -26266,7 +26300,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2589), + [anon_sym_SEMI_SEMI] = ACTIONS(2587), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -26296,28 +26330,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1013] = { [aux_sym_case_item_repeat1] = STATE(1266), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2589), [sym_comment] = ACTIONS(50), }, [1014] = { [aux_sym_concatenation_repeat1] = STATE(1267), - [sym__concat] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_RPAREN] = ACTIONS(596), + [sym__concat] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [1015] = { - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_SEMI_SEMI] = ACTIONS(2593), - [anon_sym_PIPE_AMP] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_PIPE_PIPE] = ACTIONS(2593), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_SEMI_SEMI] = ACTIONS(2591), + [anon_sym_PIPE_AMP] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_PIPE_PIPE] = ACTIONS(2591), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_LF] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_LF] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2591), }, [1016] = { [sym_case_item] = STATE(736), @@ -26328,18 +26362,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(2595), - [anon_sym_esac] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2600), - [sym_raw_string] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2603), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2609), - [anon_sym_BQUOTE] = ACTIONS(2612), - [anon_sym_LT_LPAREN] = ACTIONS(2615), - [anon_sym_GT_LPAREN] = ACTIONS(2615), + [sym_word] = ACTIONS(2593), + [anon_sym_esac] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym_raw_string] = ACTIONS(2593), + [anon_sym_DOLLAR] = ACTIONS(2601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2607), + [anon_sym_BQUOTE] = ACTIONS(2610), + [anon_sym_LT_LPAREN] = ACTIONS(2613), + [anon_sym_GT_LPAREN] = ACTIONS(2613), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2616), }, [1017] = { [sym_case_item] = STATE(736), @@ -26350,10 +26384,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2621), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2619), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26361,18 +26395,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1018] = { - [anon_sym_RBRACK] = ACTIONS(2623), + [anon_sym_RBRACK] = ACTIONS(2621), [sym_comment] = ACTIONS(50), }, [1019] = { - [anon_sym_RBRACK] = ACTIONS(2625), + [anon_sym_RBRACK] = ACTIONS(2623), [sym_comment] = ACTIONS(50), }, [1020] = { - [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2625), [sym_comment] = ACTIONS(50), }, [1021] = { @@ -26381,10 +26415,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2627), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2625), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26392,16 +26426,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1022] = { - [sym__concat] = ACTIONS(2268), - [anon_sym_in] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), + [sym__concat] = ACTIONS(2266), + [anon_sym_in] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [1023] = { [sym_string] = STATE(668), @@ -26409,10 +26443,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2629), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2627), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26420,19 +26454,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1024] = { - [sym__concat] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2276), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), + [sym__concat] = ACTIONS(2272), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [1025] = { - [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2629), [sym_comment] = ACTIONS(50), }, [1026] = { @@ -26441,10 +26475,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2631), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2629), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26452,16 +26486,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1027] = { - [sym__concat] = ACTIONS(2280), - [anon_sym_in] = ACTIONS(2282), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), + [sym__concat] = ACTIONS(2278), + [anon_sym_in] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [1028] = { [sym_string] = STATE(668), @@ -26469,10 +26503,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2633), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2631), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26480,28 +26514,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1029] = { - [sym__concat] = ACTIONS(2286), - [anon_sym_in] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), + [sym__concat] = ACTIONS(2284), + [anon_sym_in] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [1030] = { - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_SEMI_SEMI] = ACTIONS(2635), - [anon_sym_PIPE_AMP] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2633), + [anon_sym_SEMI_SEMI] = ACTIONS(2633), + [anon_sym_PIPE_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_LF] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LF] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), }, [1031] = { [sym_case_item] = STATE(736), @@ -26512,10 +26546,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2637), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2635), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -26523,49 +26557,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1032] = { - [anon_sym_PIPE] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_SEMI_SEMI] = ACTIONS(2639), - [anon_sym_PIPE_AMP] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [anon_sym_SEMI_SEMI] = ACTIONS(2637), + [anon_sym_PIPE_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LF] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), }, [1033] = { [aux_sym_concatenation_repeat1] = STATE(1037), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), }, [1034] = { [aux_sym_concatenation_repeat1] = STATE(1052), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - }, - [1035] = { + [sym__concat] = ACTIONS(2128), [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), [anon_sym_SEMI_SEMI] = ACTIONS(1888), [anon_sym_PIPE_AMP] = ACTIONS(1888), [anon_sym_AMP_AMP] = ACTIONS(1888), @@ -26575,27 +26597,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1888), [anon_sym_AMP] = ACTIONS(1888), }, + [1035] = { + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + }, [1036] = { [sym_string] = STATE(1279), [sym_simple_expansion] = STATE(1279), [sym_expansion] = STATE(1279), [sym_command_substitution] = STATE(1279), [sym_process_substitution] = STATE(1279), - [sym_word] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_raw_string] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LT_LPAREN] = ACTIONS(1485), - [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_word] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym_raw_string] = ACTIONS(2639), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1481), + [anon_sym_LT_LPAREN] = ACTIONS(1483), + [anon_sym_GT_LPAREN] = ACTIONS(1483), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2641), }, [1037] = { [aux_sym_concatenation_repeat1] = STATE(1281), - [sym__concat] = ACTIONS(2130), + [sym__concat] = ACTIONS(2128), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_SEMI_SEMI] = ACTIONS(284), [anon_sym_PIPE_AMP] = ACTIONS(284), @@ -26624,7 +26658,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2643), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -26633,59 +26667,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [1040] = { - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(468), - [anon_sym_PIPE_AMP] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [anon_sym_PIPE_AMP] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LF] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [1041] = { - [sym__concat] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(472), - [anon_sym_PIPE_AMP] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_PIPE_AMP] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LF] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_LF] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), }, [1042] = { - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_SEMI_SEMI] = ACTIONS(476), - [anon_sym_PIPE_AMP] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), + [sym__concat] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_SEMI_SEMI] = ACTIONS(474), + [anon_sym_PIPE_AMP] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LF] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_LF] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), }, [1043] = { [sym_special_variable_name] = STATE(1284), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2645), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -26694,44 +26728,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [1044] = { - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_COLON_QMARK] = ACTIONS(2653), - [anon_sym_COLON_DASH] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_COLON] = ACTIONS(2653), + [anon_sym_COLON_QMARK] = ACTIONS(2651), + [anon_sym_COLON_DASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), [sym_comment] = ACTIONS(50), }, [1045] = { - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_EQ] = ACTIONS(2661), - [anon_sym_COLON] = ACTIONS(2663), - [anon_sym_COLON_QMARK] = ACTIONS(2661), - [anon_sym_COLON_DASH] = ACTIONS(2661), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2659), + [anon_sym_COLON] = ACTIONS(2661), + [anon_sym_COLON_QMARK] = ACTIONS(2659), + [anon_sym_COLON_DASH] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), [sym_comment] = ACTIONS(50), }, [1046] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2665), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [1047] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2665), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -26751,21 +26785,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [1048] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(2663), [sym_comment] = ACTIONS(50), }, [1049] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -26778,29 +26812,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_BQUOTE] = ACTIONS(2663), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [1050] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2667), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [1051] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2667), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -26821,70 +26855,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1052] = { [aux_sym_concatenation_repeat1] = STATE(1281), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [1053] = { [aux_sym_concatenation_repeat1] = STATE(1053), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1967), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_DQUOTE] = ACTIONS(733), - [sym_raw_string] = ACTIONS(733), - [anon_sym_DOLLAR] = ACTIONS(733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(733), - [anon_sym_BQUOTE] = ACTIONS(733), - [anon_sym_LT_LPAREN] = ACTIONS(733), - [anon_sym_GT_LPAREN] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1965), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_raw_string] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_LT_LPAREN] = ACTIONS(731), + [anon_sym_GT_LPAREN] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1054] = { [sym_file_redirect] = STATE(1032), - [sym_file_descriptor] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_SEMI_SEMI] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_AMP_GT] = ACTIONS(1495), - [anon_sym_AMP_GT_GT] = ACTIONS(1495), - [anon_sym_LT_AMP] = ACTIONS(1495), - [anon_sym_GT_AMP] = ACTIONS(1495), + [sym_file_descriptor] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_SEMI_SEMI] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2118), + [anon_sym_AMP_AMP] = ACTIONS(2118), + [anon_sym_PIPE_PIPE] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_AMP_GT] = ACTIONS(1493), + [anon_sym_AMP_GT_GT] = ACTIONS(1493), + [anon_sym_LT_AMP] = ACTIONS(1493), + [anon_sym_GT_AMP] = ACTIONS(1493), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LF] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_LF] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), }, [1055] = { [sym_concatenation] = STATE(1035), @@ -26893,50 +26927,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1293), [sym_command_substitution] = STATE(1293), [sym_process_substitution] = STATE(1293), - [sym_word] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_raw_string] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LT_LPAREN] = ACTIONS(1485), - [anon_sym_GT_LPAREN] = ACTIONS(1485), + [sym_word] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym_raw_string] = ACTIONS(2667), + [anon_sym_DOLLAR] = ACTIONS(1475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1481), + [anon_sym_LT_LPAREN] = ACTIONS(1483), + [anon_sym_GT_LPAREN] = ACTIONS(1483), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2669), }, [1056] = { [aux_sym_concatenation_repeat1] = STATE(1295), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_AMP_AMP] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1226), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [1057] = { [aux_sym_concatenation_repeat1] = STATE(1296), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_SEMI_SEMI] = ACTIONS(1240), + [anon_sym_PIPE_AMP] = ACTIONS(1240), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LF] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), }, [1058] = { [aux_sym_concatenation_repeat1] = STATE(1297), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(1566), + [sym__concat] = ACTIONS(1564), [sym_variable_name] = ACTIONS(282), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_RPAREN] = ACTIONS(284), @@ -26952,55 +26986,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1059] = { [aux_sym_concatenation_repeat1] = STATE(1297), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(1566), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(1564), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [1060] = { [aux_sym_concatenation_repeat1] = STATE(1060), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(733), - [anon_sym_GT_GT] = ACTIONS(733), - [anon_sym_AMP_GT] = ACTIONS(733), - [anon_sym_AMP_GT_GT] = ACTIONS(733), - [anon_sym_LT_AMP] = ACTIONS(733), - [anon_sym_GT_AMP] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(733), - [anon_sym_LT_LT_DASH] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(729), + [sym__concat] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(731), + [anon_sym_AMP_GT] = ACTIONS(731), + [anon_sym_AMP_GT_GT] = ACTIONS(731), + [anon_sym_LT_AMP] = ACTIONS(731), + [anon_sym_GT_AMP] = ACTIONS(731), + [anon_sym_LT_LT] = ACTIONS(731), + [anon_sym_LT_LT_DASH] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1061] = { - [anon_sym_RBRACK] = ACTIONS(2673), + [anon_sym_RBRACK] = ACTIONS(2671), [sym_comment] = ACTIONS(50), }, [1062] = { - [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2673), [sym_comment] = ACTIONS(50), }, [1063] = { - [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_RBRACE] = ACTIONS(2675), [sym_comment] = ACTIONS(50), }, [1064] = { @@ -27009,10 +27043,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2677), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2675), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27020,24 +27054,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1065] = { - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [sym_raw_string] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), - [anon_sym_BQUOTE] = ACTIONS(2268), - [anon_sym_LT_LPAREN] = ACTIONS(2268), - [anon_sym_GT_LPAREN] = ACTIONS(2268), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_RBRACK] = ACTIONS(2677), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_raw_string] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2266), + [anon_sym_LT_LPAREN] = ACTIONS(2266), + [anon_sym_GT_LPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), }, [1066] = { [sym_string] = STATE(668), @@ -27045,10 +27079,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2681), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2679), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27056,27 +27090,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1067] = { - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_raw_string] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2274), - [anon_sym_LT_LPAREN] = ACTIONS(2274), - [anon_sym_GT_LPAREN] = ACTIONS(2274), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_RBRACK] = ACTIONS(2681), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_raw_string] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2272), + [anon_sym_BQUOTE] = ACTIONS(2272), + [anon_sym_LT_LPAREN] = ACTIONS(2272), + [anon_sym_GT_LPAREN] = ACTIONS(2272), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2681), }, [1068] = { - [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2683), [sym_comment] = ACTIONS(50), }, [1069] = { @@ -27085,10 +27119,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2685), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2683), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27096,24 +27130,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1070] = { - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_RBRACK] = ACTIONS(2687), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_raw_string] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), - [anon_sym_BQUOTE] = ACTIONS(2280), - [anon_sym_LT_LPAREN] = ACTIONS(2280), - [anon_sym_GT_LPAREN] = ACTIONS(2280), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_RBRACK] = ACTIONS(2685), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_raw_string] = ACTIONS(2278), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2278), + [anon_sym_BQUOTE] = ACTIONS(2278), + [anon_sym_LT_LPAREN] = ACTIONS(2278), + [anon_sym_GT_LPAREN] = ACTIONS(2278), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), }, [1071] = { [sym_string] = STATE(668), @@ -27121,10 +27155,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2689), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2687), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27132,132 +27166,132 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1072] = { - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2691), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym_raw_string] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_LT_LPAREN] = ACTIONS(2286), - [anon_sym_GT_LPAREN] = ACTIONS(2286), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_RBRACK] = ACTIONS(2689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [sym_raw_string] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2284), + [anon_sym_LT_LPAREN] = ACTIONS(2284), + [anon_sym_GT_LPAREN] = ACTIONS(2284), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2689), }, [1073] = { - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1074] = { - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [sym_variable_name] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [sym_identifier] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [1075] = { [aux_sym_concatenation_repeat1] = STATE(1075), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(2693), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(2691), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1076] = { - [sym_word] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym_word] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_SEMI_SEMI] = ACTIONS(1970), + [anon_sym_PIPE_AMP] = ACTIONS(1970), + [anon_sym_AMP_AMP] = ACTIONS(1970), + [anon_sym_PIPE_PIPE] = ACTIONS(1970), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), }, [1077] = { - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [1078] = { - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2696), [sym_comment] = ACTIONS(50), }, [1079] = { - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2700), [sym_comment] = ACTIONS(50), }, [1080] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [sym_variable_name] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [1081] = { - [anon_sym_AT] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(2702), [sym_comment] = ACTIONS(50), }, [1082] = { @@ -27267,10 +27301,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1309), [sym_command_substitution] = STATE(1309), [sym_process_substitution] = STATE(1309), - [sym_word] = ACTIONS(2706), - [anon_sym_RBRACE] = ACTIONS(2708), + [sym_word] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2706), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2706), + [sym_raw_string] = ACTIONS(2704), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27278,26 +27312,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2708), }, [1083] = { - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [sym_variable_name] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [sym_variable_name] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [sym_identifier] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [1084] = { - [anon_sym_AT] = ACTIONS(2712), + [anon_sym_AT] = ACTIONS(2710), [sym_comment] = ACTIONS(50), }, [1085] = { @@ -27307,10 +27341,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1314), [sym_command_substitution] = STATE(1314), [sym_process_substitution] = STATE(1314), - [sym_word] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2700), + [sym_word] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2698), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2714), + [sym_raw_string] = ACTIONS(2712), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27318,50 +27352,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2714), }, [1086] = { - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [sym_variable_name] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), - [anon_sym_PIPE_AMP] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [sym_variable_name] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [1087] = { - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym_variable_name] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [sym_variable_name] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [1088] = { - [anon_sym_RBRACK] = ACTIONS(2718), + [anon_sym_RBRACK] = ACTIONS(2716), [sym_comment] = ACTIONS(50), }, [1089] = { - [anon_sym_RBRACK] = ACTIONS(2720), + [anon_sym_RBRACK] = ACTIONS(2718), [sym_comment] = ACTIONS(50), }, [1090] = { - [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2720), [sym_comment] = ACTIONS(50), }, [1091] = { @@ -27370,10 +27404,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2722), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2720), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27381,35 +27415,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1092] = { - [sym_file_descriptor] = ACTIONS(2268), - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [sym_variable_name] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_PIPE_AMP] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_GT] = ACTIONS(2679), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_AMP_GT] = ACTIONS(2679), - [anon_sym_AMP_GT_GT] = ACTIONS(2268), - [anon_sym_LT_AMP] = ACTIONS(2268), - [anon_sym_GT_AMP] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [sym_raw_string] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), - [anon_sym_BQUOTE] = ACTIONS(2268), - [anon_sym_LT_LPAREN] = ACTIONS(2268), - [anon_sym_GT_LPAREN] = ACTIONS(2268), + [sym_file_descriptor] = ACTIONS(2266), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [sym_variable_name] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_AMP_GT] = ACTIONS(2677), + [anon_sym_AMP_GT_GT] = ACTIONS(2266), + [anon_sym_LT_AMP] = ACTIONS(2266), + [anon_sym_GT_AMP] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_raw_string] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2266), + [anon_sym_LT_LPAREN] = ACTIONS(2266), + [anon_sym_GT_LPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), }, [1093] = { [sym_string] = STATE(668), @@ -27417,10 +27451,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2724), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2722), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27428,38 +27462,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1094] = { - [sym_file_descriptor] = ACTIONS(2274), - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_PIPE_AMP] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_AMP_GT] = ACTIONS(2683), - [anon_sym_AMP_GT_GT] = ACTIONS(2274), - [anon_sym_LT_AMP] = ACTIONS(2274), - [anon_sym_GT_AMP] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_raw_string] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2274), - [anon_sym_LT_LPAREN] = ACTIONS(2274), - [anon_sym_GT_LPAREN] = ACTIONS(2274), + [sym_file_descriptor] = ACTIONS(2272), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [sym_variable_name] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_PIPE_AMP] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2272), + [anon_sym_AMP_GT] = ACTIONS(2681), + [anon_sym_AMP_GT_GT] = ACTIONS(2272), + [anon_sym_LT_AMP] = ACTIONS(2272), + [anon_sym_GT_AMP] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_raw_string] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2272), + [anon_sym_BQUOTE] = ACTIONS(2272), + [anon_sym_LT_LPAREN] = ACTIONS(2272), + [anon_sym_GT_LPAREN] = ACTIONS(2272), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2681), }, [1095] = { - [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2724), [sym_comment] = ACTIONS(50), }, [1096] = { @@ -27468,10 +27502,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2726), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2724), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27479,35 +27513,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1097] = { - [sym_file_descriptor] = ACTIONS(2280), - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_PIPE_AMP] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_GT_GT] = ACTIONS(2280), - [anon_sym_AMP_GT] = ACTIONS(2687), - [anon_sym_AMP_GT_GT] = ACTIONS(2280), - [anon_sym_LT_AMP] = ACTIONS(2280), - [anon_sym_GT_AMP] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_raw_string] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), - [anon_sym_BQUOTE] = ACTIONS(2280), - [anon_sym_LT_LPAREN] = ACTIONS(2280), - [anon_sym_GT_LPAREN] = ACTIONS(2280), + [sym_file_descriptor] = ACTIONS(2278), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [sym_variable_name] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_PIPE_AMP] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_AMP_GT] = ACTIONS(2685), + [anon_sym_AMP_GT_GT] = ACTIONS(2278), + [anon_sym_LT_AMP] = ACTIONS(2278), + [anon_sym_GT_AMP] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_raw_string] = ACTIONS(2278), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2278), + [anon_sym_BQUOTE] = ACTIONS(2278), + [anon_sym_LT_LPAREN] = ACTIONS(2278), + [anon_sym_GT_LPAREN] = ACTIONS(2278), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), }, [1098] = { [sym_string] = STATE(668), @@ -27515,10 +27549,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2728), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2726), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27526,46 +27560,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1099] = { - [sym_file_descriptor] = ACTIONS(2286), - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [sym_variable_name] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_AMP_GT] = ACTIONS(2691), - [anon_sym_AMP_GT_GT] = ACTIONS(2286), - [anon_sym_LT_AMP] = ACTIONS(2286), - [anon_sym_GT_AMP] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym_raw_string] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_LT_LPAREN] = ACTIONS(2286), - [anon_sym_GT_LPAREN] = ACTIONS(2286), + [sym_file_descriptor] = ACTIONS(2284), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [sym_variable_name] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_PIPE_AMP] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2284), + [anon_sym_AMP_GT] = ACTIONS(2689), + [anon_sym_AMP_GT_GT] = ACTIONS(2284), + [anon_sym_LT_AMP] = ACTIONS(2284), + [anon_sym_GT_AMP] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [sym_raw_string] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2284), + [anon_sym_LT_LPAREN] = ACTIONS(2284), + [anon_sym_GT_LPAREN] = ACTIONS(2284), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2689), }, [1100] = { - [anon_sym_RBRACK] = ACTIONS(2730), + [anon_sym_RBRACK] = ACTIONS(2728), [sym_comment] = ACTIONS(50), }, [1101] = { - [anon_sym_RBRACK] = ACTIONS(2732), + [anon_sym_RBRACK] = ACTIONS(2730), [sym_comment] = ACTIONS(50), }, [1102] = { - [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2732), [sym_comment] = ACTIONS(50), }, [1103] = { @@ -27574,10 +27608,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2734), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2732), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27585,15 +27619,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1104] = { - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__string_content] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), - [anon_sym_BQUOTE] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym__string_content] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), [sym_comment] = ACTIONS(64), }, [1105] = { @@ -27602,10 +27636,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2736), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2734), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27613,19 +27647,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1106] = { - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__string_content] = ACTIONS(2683), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), - [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym__string_content] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), [sym_comment] = ACTIONS(64), }, [1107] = { - [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2736), [sym_comment] = ACTIONS(50), }, [1108] = { @@ -27634,10 +27668,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2738), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2736), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27645,15 +27679,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1109] = { - [anon_sym_DQUOTE] = ACTIONS(2282), - [sym__string_content] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), - [anon_sym_BQUOTE] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym__string_content] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), [sym_comment] = ACTIONS(64), }, [1110] = { @@ -27662,10 +27696,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2740), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2738), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27673,262 +27707,262 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1111] = { - [anon_sym_DQUOTE] = ACTIONS(2288), - [sym__string_content] = ACTIONS(2691), - [anon_sym_DOLLAR] = ACTIONS(2288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__string_content] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), [sym_comment] = ACTIONS(64), }, [1112] = { - [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2740), [sym_comment] = ACTIONS(50), }, [1113] = { - [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_RBRACE] = ACTIONS(2742), [sym_comment] = ACTIONS(50), }, [1114] = { - [sym_file_descriptor] = ACTIONS(2746), - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [anon_sym_PIPE_AMP] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_PIPE_PIPE] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_GT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_AMP_GT] = ACTIONS(2748), - [anon_sym_AMP_GT_GT] = ACTIONS(2748), - [anon_sym_LT_AMP] = ACTIONS(2748), - [anon_sym_GT_AMP] = ACTIONS(2748), - [anon_sym_LT_LT] = ACTIONS(2748), - [anon_sym_LT_LT_DASH] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_raw_string] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), - [anon_sym_BQUOTE] = ACTIONS(2748), - [anon_sym_LT_LPAREN] = ACTIONS(2748), - [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_file_descriptor] = ACTIONS(2744), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_GT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_GT] = ACTIONS(2746), + [anon_sym_AMP_GT_GT] = ACTIONS(2746), + [anon_sym_LT_AMP] = ACTIONS(2746), + [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_LT_LT_DASH] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym_raw_string] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(2746), + [anon_sym_GT_LPAREN] = ACTIONS(2746), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), }, [1115] = { [aux_sym_concatenation_repeat1] = STATE(1115), - [sym__concat] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(731), + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1116] = { - [sym_file_descriptor] = ACTIONS(2750), - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), - [anon_sym_PIPE_AMP] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_AMP_GT] = ACTIONS(2752), - [anon_sym_AMP_GT_GT] = ACTIONS(2752), - [anon_sym_LT_AMP] = ACTIONS(2752), - [anon_sym_GT_AMP] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_LT_LT_DASH] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_raw_string] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), - [anon_sym_BQUOTE] = ACTIONS(2752), - [anon_sym_LT_LPAREN] = ACTIONS(2752), - [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_file_descriptor] = ACTIONS(2748), + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(2750), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_LT_LT_DASH] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), }, [1117] = { - [sym_file_descriptor] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2756), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_LT_LT_DASH] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_file_descriptor] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(2754), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_LT_LT_DASH] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_raw_string] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_LT_LPAREN] = ACTIONS(2754), + [anon_sym_GT_LPAREN] = ACTIONS(2754), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1118] = { - [sym_file_descriptor] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), - [anon_sym_PIPE_AMP] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_PIPE_PIPE] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_GT] = ACTIONS(2760), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_AMP_GT] = ACTIONS(2760), - [anon_sym_AMP_GT_GT] = ACTIONS(2760), - [anon_sym_LT_AMP] = ACTIONS(2760), - [anon_sym_GT_AMP] = ACTIONS(2760), - [anon_sym_LT_LT] = ACTIONS(2760), - [anon_sym_LT_LT_DASH] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_raw_string] = ACTIONS(2760), - [anon_sym_DOLLAR] = ACTIONS(2760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), - [anon_sym_BQUOTE] = ACTIONS(2760), - [anon_sym_LT_LPAREN] = ACTIONS(2760), - [anon_sym_GT_LPAREN] = ACTIONS(2760), + [sym_file_descriptor] = ACTIONS(2756), + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_LT_LT_DASH] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1119] = { [aux_sym_concatenation_repeat1] = STATE(1119), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1580), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [1120] = { - [sym_file_descriptor] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(2762), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(2762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), + [sym_file_descriptor] = ACTIONS(1968), + [sym_word] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_GT] = ACTIONS(2760), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(2760), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_raw_string] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(2760), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2760), }, [1121] = { [sym_do_group] = STATE(1331), - [anon_sym_do] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1102), [sym_comment] = ACTIONS(50), }, [1122] = { - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_RPAREN] = ACTIONS(2766), - [anon_sym_PIPE_AMP] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_BQUOTE] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2764), + [anon_sym_PIPE_AMP] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_BQUOTE] = ACTIONS(2764), [sym_comment] = ACTIONS(50), }, [1123] = { - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_PIPE_AMP] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_BQUOTE] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_PIPE_AMP] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BQUOTE] = ACTIONS(2768), [sym_comment] = ACTIONS(50), }, [1124] = { - [anon_sym_fi] = ACTIONS(2772), + [anon_sym_fi] = ACTIONS(2770), [sym_comment] = ACTIONS(50), }, [1125] = { [sym_elif_clause] = STATE(453), [sym_else_clause] = STATE(1333), [aux_sym_if_statement_repeat1] = STATE(732), - [anon_sym_fi] = ACTIONS(2772), - [anon_sym_elif] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1424), + [anon_sym_fi] = ACTIONS(2770), + [anon_sym_elif] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1422), [sym_comment] = ACTIONS(50), }, [1126] = { - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_PIPE_AMP] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_BQUOTE] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2774), + [anon_sym_PIPE_AMP] = ACTIONS(2774), + [anon_sym_AMP_AMP] = ACTIONS(2774), + [anon_sym_PIPE_PIPE] = ACTIONS(2774), + [anon_sym_BQUOTE] = ACTIONS(2774), [sym_comment] = ACTIONS(50), }, [1127] = { @@ -27940,10 +27974,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2778), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2776), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27951,7 +27985,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1128] = { [sym_case_item] = STATE(736), @@ -27962,10 +27996,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1335), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2778), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2776), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -27973,15 +28007,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1129] = { - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_PIPE_AMP] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_BQUOTE] = ACTIONS(2782), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_PIPE_AMP] = ACTIONS(2780), + [anon_sym_AMP_AMP] = ACTIONS(2780), + [anon_sym_PIPE_PIPE] = ACTIONS(2780), + [anon_sym_BQUOTE] = ACTIONS(2780), [sym_comment] = ACTIONS(50), }, [1130] = { @@ -27993,10 +28027,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2784), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2782), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28004,7 +28038,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1131] = { [sym_case_item] = STATE(736), @@ -28015,10 +28049,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1337), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(2784), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(2782), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28026,40 +28060,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1132] = { [sym_file_redirect] = STATE(1338), - [sym_file_descriptor] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_PIPE_AMP] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_GT] = ACTIONS(1700), - [anon_sym_GT_GT] = ACTIONS(1702), - [anon_sym_AMP_GT] = ACTIONS(1700), - [anon_sym_AMP_GT_GT] = ACTIONS(1702), - [anon_sym_LT_AMP] = ACTIONS(1702), - [anon_sym_GT_AMP] = ACTIONS(1702), + [sym_file_descriptor] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_PIPE_AMP] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(2786), + [anon_sym_PIPE_PIPE] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1700), + [anon_sym_AMP_GT] = ACTIONS(1698), + [anon_sym_AMP_GT_GT] = ACTIONS(1700), + [anon_sym_LT_AMP] = ACTIONS(1700), + [anon_sym_GT_AMP] = ACTIONS(1700), [sym_comment] = ACTIONS(50), }, [1133] = { - [sym_file_descriptor] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2122), - [anon_sym_AMP_GT] = ACTIONS(2790), - [anon_sym_AMP_GT_GT] = ACTIONS(2122), - [anon_sym_LT_AMP] = ACTIONS(2122), - [anon_sym_GT_AMP] = ACTIONS(2122), - [anon_sym_BQUOTE] = ACTIONS(2122), + [sym_file_descriptor] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_GT] = ACTIONS(2788), + [anon_sym_GT_GT] = ACTIONS(2120), + [anon_sym_AMP_GT] = ACTIONS(2788), + [anon_sym_AMP_GT_GT] = ACTIONS(2120), + [anon_sym_LT_AMP] = ACTIONS(2120), + [anon_sym_GT_AMP] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(2120), [sym_comment] = ACTIONS(50), }, [1134] = { @@ -28069,21 +28103,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1339), [sym_command_substitution] = STATE(1339), [sym_process_substitution] = STATE(1339), - [sym_word] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym_raw_string] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_LT_LPAREN] = ACTIONS(2338), - [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_word] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym_raw_string] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_LT_LPAREN] = ACTIONS(2336), + [anon_sym_GT_LPAREN] = ACTIONS(2336), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2792), }, [1135] = { [aux_sym_concatenation_repeat1] = STATE(1343), - [sym__concat] = ACTIONS(2796), + [sym__concat] = ACTIONS(2794), [anon_sym_PIPE] = ACTIONS(428), [anon_sym_RPAREN] = ACTIONS(424), [anon_sym_PIPE_AMP] = ACTIONS(424), @@ -28096,7 +28130,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(1345), - [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_DQUOTE] = ACTIONS(2796), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -28106,25 +28140,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1137] = { [sym_special_variable_name] = STATE(1348), - [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_0] = ACTIONS(2804), - [anon_sym__] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_0] = ACTIONS(2802), + [anon_sym__] = ACTIONS(2802), }, [1138] = { [sym_special_variable_name] = STATE(1351), [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2804), [anon_sym_AT] = ACTIONS(162), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2806), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -28305,7 +28339,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1142] = { [aux_sym_concatenation_repeat1] = STATE(1358), - [sym__concat] = ACTIONS(2796), + [sym__concat] = ACTIONS(2794), [anon_sym_PIPE] = ACTIONS(444), [anon_sym_RPAREN] = ACTIONS(442), [anon_sym_PIPE_AMP] = ACTIONS(442), @@ -28323,12 +28357,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(50), }, [1144] = { - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_PIPE_AMP] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_BQUOTE] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2808), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_PIPE_AMP] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_BQUOTE] = ACTIONS(2810), [sym_comment] = ACTIONS(50), }, [1145] = { @@ -28337,42 +28371,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1359), [sym_command_substitution] = STATE(1359), [sym_process_substitution] = STATE(1359), - [sym_word] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_raw_string] = ACTIONS(2814), - [anon_sym_DOLLAR] = ACTIONS(1726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1732), - [anon_sym_LT_LPAREN] = ACTIONS(1734), - [anon_sym_GT_LPAREN] = ACTIONS(1734), + [sym_word] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(1722), + [sym_raw_string] = ACTIONS(2812), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1728), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_LT_LPAREN] = ACTIONS(1732), + [anon_sym_GT_LPAREN] = ACTIONS(1732), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2814), }, [1146] = { [aux_sym_concatenation_repeat1] = STATE(1361), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(2352), + [sym__concat] = ACTIONS(2350), [sym_variable_name] = ACTIONS(282), - [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [1147] = { - [sym_word] = ACTIONS(1342), - [sym_variable_name] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), + [sym_word] = ACTIONS(1340), + [sym_variable_name] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), }, [1148] = { [sym_concatenation] = STATE(72), @@ -28382,10 +28416,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(414), [sym_process_substitution] = STATE(414), [aux_sym_for_statement_repeat1] = STATE(688), - [sym_word] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(2818), + [sym_word] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(2816), [anon_sym_DQUOTE] = ACTIONS(102), - [sym_raw_string] = ACTIONS(766), + [sym_raw_string] = ACTIONS(764), [anon_sym_DOLLAR] = ACTIONS(104), [anon_sym_DOLLAR_LBRACE] = ACTIONS(106), [anon_sym_DOLLAR_LPAREN] = ACTIONS(108), @@ -28393,27 +28427,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(112), [anon_sym_GT_LPAREN] = ACTIONS(112), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(770), + [sym_identifier] = ACTIONS(768), }, [1149] = { [sym_word] = ACTIONS(446), [sym__concat] = ACTIONS(446), [sym_variable_name] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(890), [anon_sym_RPAREN] = ACTIONS(446), [anon_sym_PIPE_AMP] = ACTIONS(446), [anon_sym_AMP_AMP] = ACTIONS(446), [anon_sym_PIPE_PIPE] = ACTIONS(446), [anon_sym_BQUOTE] = ACTIONS(446), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(892), + [sym_identifier] = ACTIONS(890), }, [1150] = { [sym_simple_expansion] = STATE(92), [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2818), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -28422,59 +28456,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [1151] = { - [sym_word] = ACTIONS(466), - [sym__concat] = ACTIONS(466), - [sym_variable_name] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_PIPE_AMP] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), + [sym_word] = ACTIONS(464), + [sym__concat] = ACTIONS(464), + [sym_variable_name] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(464), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_BQUOTE] = ACTIONS(464), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(478), + [sym_identifier] = ACTIONS(476), }, [1152] = { - [sym_word] = ACTIONS(470), - [sym__concat] = ACTIONS(470), - [sym_variable_name] = ACTIONS(470), + [sym_word] = ACTIONS(468), + [sym__concat] = ACTIONS(468), + [sym_variable_name] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(894), + }, + [1153] = { + [sym_word] = ACTIONS(472), + [sym__concat] = ACTIONS(472), + [sym_variable_name] = ACTIONS(472), [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_PIPE_AMP] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_PIPE_AMP] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(896), }, - [1153] = { - [sym_word] = ACTIONS(474), - [sym__concat] = ACTIONS(474), - [sym_variable_name] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(898), - }, [1154] = { [sym_special_variable_name] = STATE(1365), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2820), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -28483,44 +28517,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [1155] = { - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_COLON_QMARK] = ACTIONS(2828), - [anon_sym_COLON_DASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_EQ] = ACTIONS(2826), + [anon_sym_COLON] = ACTIONS(2828), + [anon_sym_COLON_QMARK] = ACTIONS(2826), + [anon_sym_COLON_DASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), [sym_comment] = ACTIONS(50), }, [1156] = { - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2836), - [anon_sym_COLON_DASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_EQ] = ACTIONS(2834), + [anon_sym_COLON] = ACTIONS(2836), + [anon_sym_COLON_QMARK] = ACTIONS(2834), + [anon_sym_COLON_DASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2834), [sym_comment] = ACTIONS(50), }, [1157] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2838), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [1158] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2838), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -28540,21 +28574,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [1159] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(2838), [sym_comment] = ACTIONS(50), }, [1160] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -28567,29 +28601,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(2840), + [anon_sym_BQUOTE] = ACTIONS(2838), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [1161] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [1162] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(2840), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -28610,27 +28644,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1163] = { [aux_sym_concatenation_repeat1] = STATE(1361), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(2352), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(2350), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [1164] = { - [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_RBRACK] = ACTIONS(2842), [sym_comment] = ACTIONS(50), }, [1165] = { - [anon_sym_RBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(2844), [sym_comment] = ACTIONS(50), }, [1166] = { - [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2846), [sym_comment] = ACTIONS(50), }, [1167] = { @@ -28639,10 +28673,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2848), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2846), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28650,36 +28684,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1168] = { - [sym_file_descriptor] = ACTIONS(2268), - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_PIPE_AMP] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_GT] = ACTIONS(2679), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_AMP_GT] = ACTIONS(2679), - [anon_sym_AMP_GT_GT] = ACTIONS(2268), - [anon_sym_LT_AMP] = ACTIONS(2268), - [anon_sym_GT_AMP] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2679), - [anon_sym_LT_LT_DASH] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2268), - [sym_raw_string] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), - [anon_sym_BQUOTE] = ACTIONS(2268), - [anon_sym_LT_LPAREN] = ACTIONS(2268), - [anon_sym_GT_LPAREN] = ACTIONS(2268), + [sym_file_descriptor] = ACTIONS(2266), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_AMP_GT] = ACTIONS(2677), + [anon_sym_AMP_GT_GT] = ACTIONS(2266), + [anon_sym_LT_AMP] = ACTIONS(2266), + [anon_sym_GT_AMP] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2677), + [anon_sym_LT_LT_DASH] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym_raw_string] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2266), + [anon_sym_LT_LPAREN] = ACTIONS(2266), + [anon_sym_GT_LPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), }, [1169] = { [sym_string] = STATE(668), @@ -28687,10 +28721,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2850), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2848), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28698,39 +28732,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1170] = { - [sym_file_descriptor] = ACTIONS(2274), - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_PIPE_AMP] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_AMP_GT] = ACTIONS(2683), - [anon_sym_AMP_GT_GT] = ACTIONS(2274), - [anon_sym_LT_AMP] = ACTIONS(2274), - [anon_sym_GT_AMP] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2683), - [anon_sym_LT_LT_DASH] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_raw_string] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2274), - [anon_sym_LT_LPAREN] = ACTIONS(2274), - [anon_sym_GT_LPAREN] = ACTIONS(2274), + [sym_file_descriptor] = ACTIONS(2272), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_PIPE_AMP] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2272), + [anon_sym_AMP_GT] = ACTIONS(2681), + [anon_sym_AMP_GT_GT] = ACTIONS(2272), + [anon_sym_LT_AMP] = ACTIONS(2272), + [anon_sym_GT_AMP] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_LT_LT_DASH] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_raw_string] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2272), + [anon_sym_BQUOTE] = ACTIONS(2272), + [anon_sym_LT_LPAREN] = ACTIONS(2272), + [anon_sym_GT_LPAREN] = ACTIONS(2272), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2681), }, [1171] = { - [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2850), [sym_comment] = ACTIONS(50), }, [1172] = { @@ -28739,10 +28773,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2852), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2850), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28750,36 +28784,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1173] = { - [sym_file_descriptor] = ACTIONS(2280), - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_PIPE_AMP] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_GT_GT] = ACTIONS(2280), - [anon_sym_AMP_GT] = ACTIONS(2687), - [anon_sym_AMP_GT_GT] = ACTIONS(2280), - [anon_sym_LT_AMP] = ACTIONS(2280), - [anon_sym_GT_AMP] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_LT_LT_DASH] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_raw_string] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), - [anon_sym_BQUOTE] = ACTIONS(2280), - [anon_sym_LT_LPAREN] = ACTIONS(2280), - [anon_sym_GT_LPAREN] = ACTIONS(2280), + [sym_file_descriptor] = ACTIONS(2278), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_PIPE_AMP] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_AMP_GT] = ACTIONS(2685), + [anon_sym_AMP_GT_GT] = ACTIONS(2278), + [anon_sym_LT_AMP] = ACTIONS(2278), + [anon_sym_GT_AMP] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_LT_LT_DASH] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym_raw_string] = ACTIONS(2278), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2278), + [anon_sym_BQUOTE] = ACTIONS(2278), + [anon_sym_LT_LPAREN] = ACTIONS(2278), + [anon_sym_GT_LPAREN] = ACTIONS(2278), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), }, [1174] = { [sym_string] = STATE(668), @@ -28787,10 +28821,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2854), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2852), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28798,158 +28832,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1175] = { - [sym_file_descriptor] = ACTIONS(2286), - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_AMP_GT] = ACTIONS(2691), - [anon_sym_AMP_GT_GT] = ACTIONS(2286), - [anon_sym_LT_AMP] = ACTIONS(2286), - [anon_sym_GT_AMP] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LT_LT_DASH] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym_raw_string] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), - [anon_sym_LT_LPAREN] = ACTIONS(2286), - [anon_sym_GT_LPAREN] = ACTIONS(2286), + [sym_file_descriptor] = ACTIONS(2284), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_PIPE_AMP] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2284), + [anon_sym_AMP_GT] = ACTIONS(2689), + [anon_sym_AMP_GT_GT] = ACTIONS(2284), + [anon_sym_LT_AMP] = ACTIONS(2284), + [anon_sym_GT_AMP] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_LT_LT_DASH] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [sym_raw_string] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2284), + [anon_sym_LT_LPAREN] = ACTIONS(2284), + [anon_sym_GT_LPAREN] = ACTIONS(2284), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2689), }, [1176] = { - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_RPAREN] = ACTIONS(2858), - [anon_sym_PIPE_AMP] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_BQUOTE] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_RPAREN] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_BQUOTE] = ACTIONS(2856), [sym_comment] = ACTIONS(50), }, [1177] = { - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1178] = { - [sym_file_descriptor] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_AMP_GT] = ACTIONS(1529), - [anon_sym_AMP_GT_GT] = ACTIONS(735), - [anon_sym_LT_AMP] = ACTIONS(735), - [anon_sym_GT_AMP] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_LT_LT_DASH] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(733), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(733), + [anon_sym_LT_AMP] = ACTIONS(733), + [anon_sym_GT_AMP] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), [sym_comment] = ACTIONS(50), }, [1179] = { [aux_sym_concatenation_repeat1] = STATE(1179), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_LT_LT_DASH] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym__concat] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_LT_LT_DASH] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1180] = { - [sym_file_descriptor] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_AMP_GT] = ACTIONS(1534), - [anon_sym_AMP_GT_GT] = ACTIONS(1037), - [anon_sym_LT_AMP] = ACTIONS(1037), - [anon_sym_GT_AMP] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1534), - [anon_sym_LT_LT_DASH] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), + [sym_file_descriptor] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_AMP_GT] = ACTIONS(1532), + [anon_sym_AMP_GT_GT] = ACTIONS(1035), + [anon_sym_LT_AMP] = ACTIONS(1035), + [anon_sym_GT_AMP] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1532), + [anon_sym_LT_LT_DASH] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), [sym_comment] = ACTIONS(50), }, [1181] = { - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2863), [sym_comment] = ACTIONS(50), }, [1182] = { - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2867), [sym_comment] = ACTIONS(50), }, [1183] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1544), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_LT_LT_DASH] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_file_descriptor] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_PIPE_AMP] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1064), + [anon_sym_AMP_GT] = ACTIONS(1542), + [anon_sym_AMP_GT_GT] = ACTIONS(1064), + [anon_sym_LT_AMP] = ACTIONS(1064), + [anon_sym_GT_AMP] = ACTIONS(1064), + [anon_sym_LT_LT] = ACTIONS(1542), + [anon_sym_LT_LT_DASH] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), [sym_comment] = ACTIONS(50), }, [1184] = { - [anon_sym_AT] = ACTIONS(2871), + [anon_sym_AT] = ACTIONS(2869), [sym_comment] = ACTIONS(50), }, [1185] = { @@ -28959,10 +28993,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1385), [sym_command_substitution] = STATE(1385), [sym_process_substitution] = STATE(1385), - [sym_word] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2875), + [sym_word] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2873), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2873), + [sym_raw_string] = ACTIONS(2871), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -28970,30 +29004,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2875), }, [1186] = { - [sym_file_descriptor] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1554), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_AMP_GT] = ACTIONS(1554), - [anon_sym_AMP_GT_GT] = ACTIONS(1078), - [anon_sym_LT_AMP] = ACTIONS(1078), - [anon_sym_GT_AMP] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1554), - [anon_sym_LT_LT_DASH] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), + [sym_file_descriptor] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_GT_GT] = ACTIONS(1076), + [anon_sym_AMP_GT] = ACTIONS(1552), + [anon_sym_AMP_GT_GT] = ACTIONS(1076), + [anon_sym_LT_AMP] = ACTIONS(1076), + [anon_sym_GT_AMP] = ACTIONS(1076), + [anon_sym_LT_LT] = ACTIONS(1552), + [anon_sym_LT_LT_DASH] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), [sym_comment] = ACTIONS(50), }, [1187] = { - [anon_sym_AT] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2877), [sym_comment] = ACTIONS(50), }, [1188] = { @@ -29003,10 +29037,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1390), [sym_command_substitution] = STATE(1390), [sym_process_substitution] = STATE(1390), - [sym_word] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2867), + [sym_word] = ACTIONS(2879), + [anon_sym_RBRACE] = ACTIONS(2865), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2881), + [sym_raw_string] = ACTIONS(2879), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29014,110 +29048,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2883), + [sym_identifier] = ACTIONS(2881), }, [1189] = { - [sym_file_descriptor] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_PIPE_AMP] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1162), - [anon_sym_AMP_GT] = ACTIONS(1562), - [anon_sym_AMP_GT_GT] = ACTIONS(1162), - [anon_sym_LT_AMP] = ACTIONS(1162), - [anon_sym_GT_AMP] = ACTIONS(1162), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_LT_LT_DASH] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), + [sym_file_descriptor] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_AMP_GT] = ACTIONS(1560), + [anon_sym_AMP_GT_GT] = ACTIONS(1160), + [anon_sym_LT_AMP] = ACTIONS(1160), + [anon_sym_GT_AMP] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1560), + [anon_sym_LT_LT_DASH] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), [sym_comment] = ACTIONS(50), }, [1190] = { - [sym_file_descriptor] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1214), - [anon_sym_AMP_GT] = ACTIONS(1564), - [anon_sym_AMP_GT_GT] = ACTIONS(1214), - [anon_sym_LT_AMP] = ACTIONS(1214), - [anon_sym_GT_AMP] = ACTIONS(1214), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_LT_LT_DASH] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), + [sym_file_descriptor] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_PIPE_AMP] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_AMP_GT] = ACTIONS(1562), + [anon_sym_AMP_GT_GT] = ACTIONS(1212), + [anon_sym_LT_AMP] = ACTIONS(1212), + [anon_sym_GT_AMP] = ACTIONS(1212), + [anon_sym_LT_LT] = ACTIONS(1562), + [anon_sym_LT_LT_DASH] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), [sym_comment] = ACTIONS(50), }, [1191] = { - [sym_file_descriptor] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2485), - [anon_sym_PIPE_AMP] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_PIPE_PIPE] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_GT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2485), - [anon_sym_AMP_GT] = ACTIONS(2885), - [anon_sym_AMP_GT_GT] = ACTIONS(2485), - [anon_sym_LT_AMP] = ACTIONS(2485), - [anon_sym_GT_AMP] = ACTIONS(2485), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_LT_LT_DASH] = ACTIONS(2485), - [anon_sym_BQUOTE] = ACTIONS(2485), + [sym_file_descriptor] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_RPAREN] = ACTIONS(2483), + [anon_sym_PIPE_AMP] = ACTIONS(2483), + [anon_sym_AMP_AMP] = ACTIONS(2483), + [anon_sym_PIPE_PIPE] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2483), + [anon_sym_AMP_GT] = ACTIONS(2883), + [anon_sym_AMP_GT_GT] = ACTIONS(2483), + [anon_sym_LT_AMP] = ACTIONS(2483), + [anon_sym_GT_AMP] = ACTIONS(2483), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_LT_LT_DASH] = ACTIONS(2483), + [anon_sym_BQUOTE] = ACTIONS(2483), [sym_comment] = ACTIONS(50), }, [1192] = { [aux_sym_concatenation_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(731), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(1582), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(1580), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym_raw_string] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(729), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [1193] = { [sym_file_redirect] = STATE(1338), - [sym_file_descriptor] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_PIPE_AMP] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_GT] = ACTIONS(1856), - [anon_sym_GT_GT] = ACTIONS(1858), - [anon_sym_AMP_GT] = ACTIONS(1856), - [anon_sym_AMP_GT_GT] = ACTIONS(1858), - [anon_sym_LT_AMP] = ACTIONS(1858), - [anon_sym_GT_AMP] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(2788), + [sym_file_descriptor] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_PIPE_AMP] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(2786), + [anon_sym_PIPE_PIPE] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_GT_GT] = ACTIONS(1856), + [anon_sym_AMP_GT] = ACTIONS(1854), + [anon_sym_AMP_GT_GT] = ACTIONS(1856), + [anon_sym_LT_AMP] = ACTIONS(1856), + [anon_sym_GT_AMP] = ACTIONS(1856), + [anon_sym_BQUOTE] = ACTIONS(2786), [sym_comment] = ACTIONS(50), }, [1194] = { @@ -29127,21 +29161,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1393), [sym_command_substitution] = STATE(1393), [sym_process_substitution] = STATE(1393), - [sym_word] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym_raw_string] = ACTIONS(2887), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_LT_LPAREN] = ACTIONS(2338), - [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_word] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym_raw_string] = ACTIONS(2885), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_LT_LPAREN] = ACTIONS(2336), + [anon_sym_GT_LPAREN] = ACTIONS(2336), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2887), }, [1195] = { [aux_sym_concatenation_repeat1] = STATE(1395), - [sym__concat] = ACTIONS(2796), + [sym__concat] = ACTIONS(2794), [anon_sym_PIPE] = ACTIONS(428), [anon_sym_PIPE_AMP] = ACTIONS(424), [anon_sym_AMP_AMP] = ACTIONS(424), @@ -29151,7 +29185,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1196] = { [aux_sym_concatenation_repeat1] = STATE(1396), - [sym__concat] = ACTIONS(2796), + [sym__concat] = ACTIONS(2794), [anon_sym_PIPE] = ACTIONS(444), [anon_sym_PIPE_AMP] = ACTIONS(442), [anon_sym_AMP_AMP] = ACTIONS(442), @@ -29162,187 +29196,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [1197] = { [aux_sym_concatenation_repeat1] = STATE(1397), [sym_word] = ACTIONS(282), - [sym__concat] = ACTIONS(2352), + [sym__concat] = ACTIONS(2350), [sym_variable_name] = ACTIONS(282), - [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), [anon_sym_BQUOTE] = ACTIONS(282), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(890), + [sym_identifier] = ACTIONS(888), }, [1198] = { [aux_sym_concatenation_repeat1] = STATE(1397), - [sym_word] = ACTIONS(596), - [sym__concat] = ACTIONS(2352), - [sym_variable_name] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), + [sym_word] = ACTIONS(594), + [sym__concat] = ACTIONS(2350), + [sym_variable_name] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), }, [1199] = { [aux_sym_concatenation_repeat1] = STATE(1199), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(1527), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), + [sym_file_descriptor] = ACTIONS(729), + [sym__concat] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_AMP_GT] = ACTIONS(1525), + [anon_sym_AMP_GT_GT] = ACTIONS(729), + [anon_sym_LT_AMP] = ACTIONS(729), + [anon_sym_GT_AMP] = ACTIONS(729), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_LT_LT_DASH] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1200] = { - [sym_file_descriptor] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), - [anon_sym_PIPE_AMP] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_PIPE_PIPE] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1631), - [anon_sym_GT_GT] = ACTIONS(1631), - [anon_sym_AMP_GT] = ACTIONS(1631), - [anon_sym_AMP_GT_GT] = ACTIONS(1631), - [anon_sym_LT_AMP] = ACTIONS(1631), - [anon_sym_GT_AMP] = ACTIONS(1631), - [anon_sym_LT_LT] = ACTIONS(1631), - [anon_sym_LT_LT_DASH] = ACTIONS(1631), + [sym_file_descriptor] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(1629), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [anon_sym_LT_LT] = ACTIONS(1629), + [anon_sym_LT_LT_DASH] = ACTIONS(1629), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [1201] = { - [anon_sym_AT] = ACTIONS(2891), + [anon_sym_AT] = ACTIONS(2889), [sym_comment] = ACTIONS(50), }, [1202] = { - [sym_file_descriptor] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), - [anon_sym_PIPE_AMP] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1637), - [anon_sym_PIPE_PIPE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1637), - [anon_sym_AMP_GT] = ACTIONS(1637), - [anon_sym_AMP_GT_GT] = ACTIONS(1637), - [anon_sym_LT_AMP] = ACTIONS(1637), - [anon_sym_GT_AMP] = ACTIONS(1637), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_LT_LT_DASH] = ACTIONS(1637), + [sym_file_descriptor] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_GT_GT] = ACTIONS(1635), + [anon_sym_AMP_GT] = ACTIONS(1635), + [anon_sym_AMP_GT_GT] = ACTIONS(1635), + [anon_sym_LT_AMP] = ACTIONS(1635), + [anon_sym_GT_AMP] = ACTIONS(1635), + [anon_sym_LT_LT] = ACTIONS(1635), + [anon_sym_LT_LT_DASH] = ACTIONS(1635), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), }, [1203] = { - [anon_sym_AT] = ACTIONS(2893), + [anon_sym_AT] = ACTIONS(2891), [sym_comment] = ACTIONS(50), }, [1204] = { - [anon_sym_RBRACK] = ACTIONS(2895), + [anon_sym_RBRACK] = ACTIONS(2893), [sym_comment] = ACTIONS(50), }, [1205] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2899), + [sym__concat] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2897), [sym_comment] = ACTIONS(50), }, [1206] = { - [sym_file_descriptor] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), - [anon_sym_PIPE_AMP] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_GT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1649), - [anon_sym_AMP_GT] = ACTIONS(1649), - [anon_sym_AMP_GT_GT] = ACTIONS(1649), - [anon_sym_LT_AMP] = ACTIONS(1649), - [anon_sym_GT_AMP] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_LT_LT_DASH] = ACTIONS(1649), + [sym_file_descriptor] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_GT_GT] = ACTIONS(1647), + [anon_sym_AMP_GT] = ACTIONS(1647), + [anon_sym_AMP_GT_GT] = ACTIONS(1647), + [anon_sym_LT_AMP] = ACTIONS(1647), + [anon_sym_GT_AMP] = ACTIONS(1647), + [anon_sym_LT_LT] = ACTIONS(1647), + [anon_sym_LT_LT_DASH] = ACTIONS(1647), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), }, [1207] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2903), + [sym__concat] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2901), [sym_comment] = ACTIONS(50), }, [1208] = { - [sym__concat] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2899), + [sym__concat] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2897), [sym_comment] = ACTIONS(50), }, [1209] = { - [anon_sym_RBRACK] = ACTIONS(2905), + [anon_sym_RBRACK] = ACTIONS(2903), [sym_comment] = ACTIONS(50), }, [1210] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2909), + [sym__concat] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2907), [sym_comment] = ACTIONS(50), }, [1211] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2913), + [sym__concat] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2911), [sym_comment] = ACTIONS(50), }, [1212] = { - [sym__concat] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2909), + [sym__concat] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2907), [sym_comment] = ACTIONS(50), }, [1213] = { - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2915), [sym_comment] = ACTIONS(50), }, [1214] = { - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2919), [sym_comment] = ACTIONS(50), }, [1215] = { - [sym__heredoc_middle] = ACTIONS(1066), - [sym__heredoc_end] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), + [sym__heredoc_middle] = ACTIONS(1064), + [sym__heredoc_end] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1064), [sym_comment] = ACTIONS(50), }, [1216] = { - [anon_sym_AT] = ACTIONS(2923), + [anon_sym_AT] = ACTIONS(2921), [sym_comment] = ACTIONS(50), }, [1217] = { @@ -29352,10 +29386,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1415), [sym_command_substitution] = STATE(1415), [sym_process_substitution] = STATE(1415), - [sym_word] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2927), + [sym_word] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2925), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2925), + [sym_raw_string] = ACTIONS(2923), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29363,17 +29397,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2927), }, [1218] = { - [sym__heredoc_middle] = ACTIONS(1078), - [sym__heredoc_end] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1078), + [sym__heredoc_middle] = ACTIONS(1076), + [sym__heredoc_end] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), [sym_comment] = ACTIONS(50), }, [1219] = { - [anon_sym_AT] = ACTIONS(2931), + [anon_sym_AT] = ACTIONS(2929), [sym_comment] = ACTIONS(50), }, [1220] = { @@ -29383,10 +29417,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1420), [sym_command_substitution] = STATE(1420), [sym_process_substitution] = STATE(1420), - [sym_word] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2919), + [sym_word] = ACTIONS(2931), + [anon_sym_RBRACE] = ACTIONS(2917), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(2933), + [sym_raw_string] = ACTIONS(2931), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29394,18 +29428,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2933), }, [1221] = { - [anon_sym_RBRACK] = ACTIONS(2937), + [anon_sym_RBRACK] = ACTIONS(2935), [sym_comment] = ACTIONS(50), }, [1222] = { - [anon_sym_RBRACK] = ACTIONS(2939), + [anon_sym_RBRACK] = ACTIONS(2937), [sym_comment] = ACTIONS(50), }, [1223] = { - [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_RBRACE] = ACTIONS(2939), [sym_comment] = ACTIONS(50), }, [1224] = { @@ -29414,10 +29448,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2941), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2939), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29425,14 +29459,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1225] = { - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_RBRACK] = ACTIONS(2268), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_RBRACK] = ACTIONS(2266), [sym_comment] = ACTIONS(50), }, [1226] = { @@ -29441,10 +29475,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2943), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2941), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29452,18 +29486,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1227] = { - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_RBRACK] = ACTIONS(2274), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_RBRACK] = ACTIONS(2272), [sym_comment] = ACTIONS(50), }, [1228] = { - [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2943), [sym_comment] = ACTIONS(50), }, [1229] = { @@ -29472,10 +29506,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2945), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2943), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29483,14 +29517,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1230] = { - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_RBRACK] = ACTIONS(2280), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_RBRACK] = ACTIONS(2278), [sym_comment] = ACTIONS(50), }, [1231] = { @@ -29499,10 +29533,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2947), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2945), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29510,26 +29544,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1232] = { - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_RBRACK] = ACTIONS(2286), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_RBRACK] = ACTIONS(2284), [sym_comment] = ACTIONS(50), }, [1233] = { - [anon_sym_RBRACK] = ACTIONS(2949), + [anon_sym_RBRACK] = ACTIONS(2947), [sym_comment] = ACTIONS(50), }, [1234] = { - [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_RBRACK] = ACTIONS(2949), [sym_comment] = ACTIONS(50), }, [1235] = { - [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2951), [sym_comment] = ACTIONS(50), }, [1236] = { @@ -29538,10 +29572,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2953), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2951), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29549,39 +29583,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1237] = { - [sym_file_descriptor] = ACTIONS(2268), - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [sym_variable_name] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_AMP_GT] = ACTIONS(2270), - [anon_sym_AMP_GT_GT] = ACTIONS(2270), - [anon_sym_LT_AMP] = ACTIONS(2270), - [anon_sym_GT_AMP] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym_raw_string] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), - [anon_sym_BQUOTE] = ACTIONS(2270), - [anon_sym_LT_LPAREN] = ACTIONS(2270), - [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_file_descriptor] = ACTIONS(2266), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [sym_variable_name] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2268), + [anon_sym_GT_GT] = ACTIONS(2268), + [anon_sym_AMP_GT] = ACTIONS(2268), + [anon_sym_AMP_GT_GT] = ACTIONS(2268), + [anon_sym_LT_AMP] = ACTIONS(2268), + [anon_sym_GT_AMP] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_raw_string] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2268), + [anon_sym_GT_LPAREN] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [1238] = { [sym_string] = STATE(668), @@ -29589,10 +29623,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2955), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2953), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29600,42 +29634,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1239] = { - [sym_file_descriptor] = ACTIONS(2274), - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), - [anon_sym_PIPE_AMP] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2276), - [anon_sym_AMP_GT] = ACTIONS(2276), - [anon_sym_AMP_GT_GT] = ACTIONS(2276), - [anon_sym_LT_AMP] = ACTIONS(2276), - [anon_sym_GT_AMP] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_raw_string] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_LT_LPAREN] = ACTIONS(2276), - [anon_sym_GT_LPAREN] = ACTIONS(2276), + [sym_file_descriptor] = ACTIONS(2272), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [sym_variable_name] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2274), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_AMP_GT] = ACTIONS(2274), + [anon_sym_AMP_GT_GT] = ACTIONS(2274), + [anon_sym_LT_AMP] = ACTIONS(2274), + [anon_sym_GT_AMP] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_raw_string] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [anon_sym_LT_LPAREN] = ACTIONS(2274), + [anon_sym_GT_LPAREN] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [1240] = { - [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2955), [sym_comment] = ACTIONS(50), }, [1241] = { @@ -29644,10 +29678,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2957), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2955), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29655,39 +29689,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1242] = { - [sym_file_descriptor] = ACTIONS(2280), - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [sym_raw_string] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), - [anon_sym_BQUOTE] = ACTIONS(2282), - [anon_sym_LT_LPAREN] = ACTIONS(2282), - [anon_sym_GT_LPAREN] = ACTIONS(2282), + [sym_file_descriptor] = ACTIONS(2278), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [sym_variable_name] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_GT] = ACTIONS(2280), + [anon_sym_GT_GT] = ACTIONS(2280), + [anon_sym_AMP_GT] = ACTIONS(2280), + [anon_sym_AMP_GT_GT] = ACTIONS(2280), + [anon_sym_LT_AMP] = ACTIONS(2280), + [anon_sym_GT_AMP] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [anon_sym_LT_LPAREN] = ACTIONS(2280), + [anon_sym_GT_LPAREN] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [1243] = { [sym_string] = STATE(668), @@ -29695,10 +29729,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(2959), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(2957), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -29706,142 +29740,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1244] = { - [sym_file_descriptor] = ACTIONS(2286), - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [sym_variable_name] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2288), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [sym_raw_string] = ACTIONS(2288), - [anon_sym_DOLLAR] = ACTIONS(2288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2288), - [anon_sym_LT_LPAREN] = ACTIONS(2288), - [anon_sym_GT_LPAREN] = ACTIONS(2288), + [sym_file_descriptor] = ACTIONS(2284), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [sym_variable_name] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_AMP_GT] = ACTIONS(2286), + [anon_sym_AMP_GT_GT] = ACTIONS(2286), + [anon_sym_LT_AMP] = ACTIONS(2286), + [anon_sym_GT_AMP] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [1245] = { - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_raw_string] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [anon_sym_LT_LPAREN] = ACTIONS(1631), - [anon_sym_GT_LPAREN] = ACTIONS(1631), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [1246] = { - [anon_sym_AT] = ACTIONS(2961), + [anon_sym_AT] = ACTIONS(2959), [sym_comment] = ACTIONS(50), }, [1247] = { - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym_raw_string] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1637), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1637), - [anon_sym_LT_LPAREN] = ACTIONS(1637), - [anon_sym_GT_LPAREN] = ACTIONS(1637), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_raw_string] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(1635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), }, [1248] = { - [anon_sym_AT] = ACTIONS(2963), + [anon_sym_AT] = ACTIONS(2961), [sym_comment] = ACTIONS(50), }, [1249] = { - [anon_sym_RBRACK] = ACTIONS(2965), + [anon_sym_RBRACK] = ACTIONS(2963), [sym_comment] = ACTIONS(50), }, [1250] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2969), + [sym__concat] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2967), [sym_comment] = ACTIONS(50), }, [1251] = { - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_raw_string] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1649), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1649), - [anon_sym_BQUOTE] = ACTIONS(1649), - [anon_sym_LT_LPAREN] = ACTIONS(1649), - [anon_sym_GT_LPAREN] = ACTIONS(1649), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_raw_string] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [anon_sym_LT_LPAREN] = ACTIONS(1647), + [anon_sym_GT_LPAREN] = ACTIONS(1647), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), }, [1252] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2973), + [sym__concat] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2971), [sym_comment] = ACTIONS(50), }, [1253] = { - [sym__concat] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2969), + [sym__concat] = ACTIONS(2963), + [anon_sym_RBRACE] = ACTIONS(2967), [sym_comment] = ACTIONS(50), }, [1254] = { - [anon_sym_RBRACK] = ACTIONS(2975), + [anon_sym_RBRACK] = ACTIONS(2973), [sym_comment] = ACTIONS(50), }, [1255] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2979), + [sym__concat] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2977), [sym_comment] = ACTIONS(50), }, [1256] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2983), + [sym__concat] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2981), [sym_comment] = ACTIONS(50), }, [1257] = { - [sym__concat] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2979), + [sym__concat] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2977), [sym_comment] = ACTIONS(50), }, [1258] = { @@ -29875,9 +29909,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2985), - [anon_sym_elif] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), + [anon_sym_fi] = ACTIONS(2983), + [anon_sym_elif] = ACTIONS(2983), + [anon_sym_else] = ACTIONS(2983), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -29907,49 +29941,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [1259] = { - [anon_sym_PIPE] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_SEMI_SEMI] = ACTIONS(2987), - [anon_sym_PIPE_AMP] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_SEMI_SEMI] = ACTIONS(2985), + [anon_sym_PIPE_AMP] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_LF] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), }, [1260] = { [aux_sym_concatenation_repeat1] = STATE(1011), - [sym__concat] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_RPAREN] = ACTIONS(2989), + [sym__concat] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2987), [sym_comment] = ACTIONS(50), }, [1261] = { [aux_sym_concatenation_repeat1] = STATE(1014), - [sym__concat] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [sym_comment] = ACTIONS(50), - }, - [1262] = { + [sym__concat] = ACTIONS(740), [anon_sym_PIPE] = ACTIONS(2989), [anon_sym_RPAREN] = ACTIONS(2989), [sym_comment] = ACTIONS(50), }, - [1263] = { - [sym_word] = ACTIONS(2993), - [anon_sym_esac] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2993), - [sym_raw_string] = ACTIONS(2993), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2993), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2993), - [anon_sym_BQUOTE] = ACTIONS(2993), - [anon_sym_LT_LPAREN] = ACTIONS(2993), - [anon_sym_GT_LPAREN] = ACTIONS(2993), + [1262] = { + [anon_sym_PIPE] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2987), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2997), + }, + [1263] = { + [sym_word] = ACTIONS(2991), + [anon_sym_esac] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_raw_string] = ACTIONS(2991), + [anon_sym_DOLLAR] = ACTIONS(2993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2991), + [anon_sym_BQUOTE] = ACTIONS(2991), + [anon_sym_LT_LPAREN] = ACTIONS(2991), + [anon_sym_GT_LPAREN] = ACTIONS(2991), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(2995), }, [1264] = { [sym__terminated_statement] = STATE(23), @@ -29983,7 +30017,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2999), + [anon_sym_SEMI_SEMI] = ACTIONS(2997), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -30043,7 +30077,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2999), + [anon_sym_SEMI_SEMI] = ACTIONS(2997), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -30073,30 +30107,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1266] = { [aux_sym_case_item_repeat1] = STATE(1266), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2999), + [anon_sym_RPAREN] = ACTIONS(2987), [sym_comment] = ACTIONS(50), }, [1267] = { [aux_sym_concatenation_repeat1] = STATE(1267), - [sym__concat] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(731), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1268] = { - [sym_word] = ACTIONS(3004), - [anon_sym_esac] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3004), - [sym_raw_string] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3004), - [anon_sym_BQUOTE] = ACTIONS(3004), - [anon_sym_LT_LPAREN] = ACTIONS(3004), - [anon_sym_GT_LPAREN] = ACTIONS(3004), + [sym_word] = ACTIONS(3002), + [anon_sym_esac] = ACTIONS(3004), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_raw_string] = ACTIONS(3002), + [anon_sym_DOLLAR] = ACTIONS(3004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3002), + [anon_sym_BQUOTE] = ACTIONS(3002), + [anon_sym_LT_LPAREN] = ACTIONS(3002), + [anon_sym_GT_LPAREN] = ACTIONS(3002), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3006), }, [1269] = { [sym__terminated_statement] = STATE(23), @@ -30130,7 +30164,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3010), + [anon_sym_SEMI_SEMI] = ACTIONS(3008), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -30190,7 +30224,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3010), + [anon_sym_SEMI_SEMI] = ACTIONS(3008), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -30219,150 +30253,150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [1271] = { - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_SEMI_SEMI] = ACTIONS(3012), - [anon_sym_PIPE_AMP] = ACTIONS(3012), - [anon_sym_AMP_AMP] = ACTIONS(3012), - [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_RPAREN] = ACTIONS(3010), + [anon_sym_SEMI_SEMI] = ACTIONS(3010), + [anon_sym_PIPE_AMP] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_PIPE_PIPE] = ACTIONS(3010), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3012), - [anon_sym_LF] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), }, [1272] = { - [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3012), [sym_comment] = ACTIONS(50), }, [1273] = { - [anon_sym_RBRACE] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3014), [sym_comment] = ACTIONS(50), }, [1274] = { - [sym__concat] = ACTIONS(2746), - [anon_sym_in] = ACTIONS(2748), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), + [sym__concat] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), }, [1275] = { - [sym__concat] = ACTIONS(2750), - [anon_sym_in] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), + [sym__concat] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), }, [1276] = { - [sym__concat] = ACTIONS(2754), - [anon_sym_in] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), + [sym__concat] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1277] = { - [sym__concat] = ACTIONS(2758), - [anon_sym_in] = ACTIONS(2760), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), + [sym__concat] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1278] = { - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_SEMI_SEMI] = ACTIONS(3018), - [anon_sym_PIPE_AMP] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_SEMI_SEMI] = ACTIONS(3016), + [anon_sym_PIPE_AMP] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3016), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3016), }, [1279] = { - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1280] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_SEMI_SEMI] = ACTIONS(735), + [anon_sym_PIPE_AMP] = ACTIONS(735), + [anon_sym_AMP_AMP] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(735), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(735), }, [1281] = { [aux_sym_concatenation_repeat1] = STATE(1281), - [sym__concat] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__concat] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1282] = { - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_PIPE_AMP] = ACTIONS(1039), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_SEMI_SEMI] = ACTIONS(1037), + [anon_sym_PIPE_AMP] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LF] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LF] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), }, [1283] = { - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_RBRACE] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3023), [sym_comment] = ACTIONS(50), }, [1284] = { - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3027), [sym_comment] = ACTIONS(50), }, [1285] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_SEMI_SEMI] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LF] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), }, [1286] = { - [anon_sym_AT] = ACTIONS(3031), + [anon_sym_AT] = ACTIONS(3029), [sym_comment] = ACTIONS(50), }, [1287] = { @@ -30372,10 +30406,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1459), [sym_command_substitution] = STATE(1459), [sym_process_substitution] = STATE(1459), - [sym_word] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3035), + [sym_word] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3033), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(3033), + [sym_raw_string] = ACTIONS(3031), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -30383,23 +30417,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3035), }, [1288] = { - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_SEMI_SEMI] = ACTIONS(1080), - [anon_sym_PIPE_AMP] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_LF] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, [1289] = { - [anon_sym_AT] = ACTIONS(3039), + [anon_sym_AT] = ACTIONS(3037), [sym_comment] = ACTIONS(50), }, [1290] = { @@ -30409,10 +30443,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1464), [sym_command_substitution] = STATE(1464), [sym_process_substitution] = STATE(1464), - [sym_word] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3027), + [sym_word] = ACTIONS(3039), + [anon_sym_RBRACE] = ACTIONS(3025), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(3039), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -30420,37 +30454,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3041), }, [1291] = { - [sym__concat] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_SEMI_SEMI] = ACTIONS(1164), - [anon_sym_PIPE_AMP] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1164), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1162), + [anon_sym_SEMI_SEMI] = ACTIONS(1162), + [anon_sym_PIPE_AMP] = ACTIONS(1162), + [anon_sym_AMP_AMP] = ACTIONS(1162), + [anon_sym_PIPE_PIPE] = ACTIONS(1162), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_LF] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_LF] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), }, [1292] = { - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [sym__concat] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_SEMI_SEMI] = ACTIONS(1214), + [anon_sym_PIPE_AMP] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1214), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_LF] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), }, [1293] = { [aux_sym_concatenation_repeat1] = STATE(1295), - [sym__concat] = ACTIONS(2130), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_SEMI_SEMI] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1886), + [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_LF] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + }, + [1294] = { + [aux_sym_concatenation_repeat1] = STATE(1296), + [sym__concat] = ACTIONS(2128), [anon_sym_PIPE] = ACTIONS(1888), [anon_sym_RPAREN] = ACTIONS(1888), [anon_sym_SEMI_SEMI] = ACTIONS(1888), @@ -30462,23 +30510,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(1888), [anon_sym_AMP] = ACTIONS(1888), }, - [1294] = { - [aux_sym_concatenation_repeat1] = STATE(1296), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - }, [1295] = { [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(2130), + [sym__concat] = ACTIONS(2128), [anon_sym_PIPE] = ACTIONS(284), [anon_sym_RPAREN] = ACTIONS(284), [anon_sym_SEMI_SEMI] = ACTIONS(284), @@ -30492,468 +30526,468 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1296] = { [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_SEMI_SEMI] = ACTIONS(598), - [anon_sym_PIPE_AMP] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), + [sym__concat] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_SEMI_SEMI] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LF] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LF] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), }, [1297] = { [aux_sym_concatenation_repeat1] = STATE(1297), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(2693), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(2691), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1298] = { - [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3043), [sym_comment] = ACTIONS(50), }, [1299] = { - [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3045), [sym_comment] = ACTIONS(50), }, [1300] = { - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_RBRACK] = ACTIONS(3047), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2744), + [sym_raw_string] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_LT_LPAREN] = ACTIONS(2744), + [anon_sym_GT_LPAREN] = ACTIONS(2744), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3047), + }, + [1301] = { + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2746), - [anon_sym_DQUOTE] = ACTIONS(2746), - [sym_raw_string] = ACTIONS(2746), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_raw_string] = ACTIONS(2748), [anon_sym_DOLLAR] = ACTIONS(3049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), - [anon_sym_BQUOTE] = ACTIONS(2746), - [anon_sym_LT_LPAREN] = ACTIONS(2746), - [anon_sym_GT_LPAREN] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_LT_LPAREN] = ACTIONS(2748), + [anon_sym_GT_LPAREN] = ACTIONS(2748), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3049), }, - [1301] = { - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), + [1302] = { + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), [anon_sym_RBRACK] = ACTIONS(3051), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2750), - [anon_sym_DQUOTE] = ACTIONS(2750), - [sym_raw_string] = ACTIONS(2750), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), - [anon_sym_BQUOTE] = ACTIONS(2750), - [anon_sym_LT_LPAREN] = ACTIONS(2750), - [anon_sym_GT_LPAREN] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3051), }, - [1302] = { - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), + [1303] = { + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_raw_string] = ACTIONS(2756), [anon_sym_DOLLAR] = ACTIONS(3053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3053), }, - [1303] = { - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_RBRACK] = ACTIONS(3055), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3055), - }, [1304] = { - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [sym_variable_name] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), - [anon_sym_PIPE_AMP] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [sym_variable_name] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [1305] = { - [anon_sym_AT] = ACTIONS(3057), + [anon_sym_AT] = ACTIONS(3055), [sym_comment] = ACTIONS(50), }, [1306] = { - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [sym_variable_name] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), - [anon_sym_PIPE_AMP] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1637), - [anon_sym_PIPE_PIPE] = ACTIONS(1637), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [sym_variable_name] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), }, [1307] = { - [anon_sym_AT] = ACTIONS(3059), + [anon_sym_AT] = ACTIONS(3057), [sym_comment] = ACTIONS(50), }, [1308] = { - [anon_sym_RBRACK] = ACTIONS(3061), + [anon_sym_RBRACK] = ACTIONS(3059), [sym_comment] = ACTIONS(50), }, [1309] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3065), + [sym__concat] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3063), [sym_comment] = ACTIONS(50), }, [1310] = { - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [sym_variable_name] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), - [anon_sym_PIPE_AMP] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [sym_variable_name] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), }, [1311] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3069), + [sym__concat] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3067), [sym_comment] = ACTIONS(50), }, [1312] = { - [sym__concat] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3065), + [sym__concat] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3063), [sym_comment] = ACTIONS(50), }, [1313] = { - [anon_sym_RBRACK] = ACTIONS(3071), + [anon_sym_RBRACK] = ACTIONS(3069), [sym_comment] = ACTIONS(50), }, [1314] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3075), + [sym__concat] = ACTIONS(3071), + [anon_sym_RBRACE] = ACTIONS(3073), [sym_comment] = ACTIONS(50), }, [1315] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3079), + [sym__concat] = ACTIONS(3075), + [anon_sym_RBRACE] = ACTIONS(3077), [sym_comment] = ACTIONS(50), }, [1316] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3075), + [sym__concat] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3073), [sym_comment] = ACTIONS(50), }, [1317] = { - [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3079), [sym_comment] = ACTIONS(50), }, [1318] = { - [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_RBRACE] = ACTIONS(3081), [sym_comment] = ACTIONS(50), }, [1319] = { - [sym_file_descriptor] = ACTIONS(2746), - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [sym_variable_name] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_PIPE_AMP] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(2746), - [anon_sym_AMP_GT] = ACTIONS(3049), - [anon_sym_AMP_GT_GT] = ACTIONS(2746), - [anon_sym_LT_AMP] = ACTIONS(2746), - [anon_sym_GT_AMP] = ACTIONS(2746), - [anon_sym_DQUOTE] = ACTIONS(2746), - [sym_raw_string] = ACTIONS(2746), - [anon_sym_DOLLAR] = ACTIONS(3049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), - [anon_sym_BQUOTE] = ACTIONS(2746), - [anon_sym_LT_LPAREN] = ACTIONS(2746), - [anon_sym_GT_LPAREN] = ACTIONS(2746), + [sym_file_descriptor] = ACTIONS(2744), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [sym_variable_name] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2744), + [anon_sym_LT_AMP] = ACTIONS(2744), + [anon_sym_GT_AMP] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2744), + [sym_raw_string] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_LT_LPAREN] = ACTIONS(2744), + [anon_sym_GT_LPAREN] = ACTIONS(2744), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3047), }, [1320] = { - [sym_file_descriptor] = ACTIONS(2750), - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [sym_variable_name] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(2750), - [anon_sym_AMP_GT] = ACTIONS(3051), - [anon_sym_AMP_GT_GT] = ACTIONS(2750), - [anon_sym_LT_AMP] = ACTIONS(2750), - [anon_sym_GT_AMP] = ACTIONS(2750), - [anon_sym_DQUOTE] = ACTIONS(2750), - [sym_raw_string] = ACTIONS(2750), - [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), - [anon_sym_BQUOTE] = ACTIONS(2750), - [anon_sym_LT_LPAREN] = ACTIONS(2750), - [anon_sym_GT_LPAREN] = ACTIONS(2750), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3051), - }, - [1321] = { - [sym_file_descriptor] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(3053), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(3053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3053), - }, - [1322] = { - [sym_file_descriptor] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [sym_variable_name] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_GT] = ACTIONS(3055), - [anon_sym_AMP_GT_GT] = ACTIONS(2758), - [anon_sym_LT_AMP] = ACTIONS(2758), - [anon_sym_GT_AMP] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3055), - }, - [1323] = { - [anon_sym_RBRACE] = ACTIONS(3085), - [sym_comment] = ACTIONS(50), - }, - [1324] = { - [anon_sym_RBRACE] = ACTIONS(3087), - [sym_comment] = ACTIONS(50), - }, - [1325] = { + [sym_file_descriptor] = ACTIONS(2748), + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [sym_variable_name] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_GT] = ACTIONS(3049), + [anon_sym_AMP_GT_GT] = ACTIONS(2748), + [anon_sym_LT_AMP] = ACTIONS(2748), + [anon_sym_GT_AMP] = ACTIONS(2748), [anon_sym_DQUOTE] = ACTIONS(2748), - [sym__string_content] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(2748), + [sym_raw_string] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(3049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), [anon_sym_BQUOTE] = ACTIONS(2748), - [sym_comment] = ACTIONS(64), + [anon_sym_LT_LPAREN] = ACTIONS(2748), + [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3049), }, - [1326] = { + [1321] = { + [sym_file_descriptor] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [sym_variable_name] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), [anon_sym_DQUOTE] = ACTIONS(2752), - [sym__string_content] = ACTIONS(3051), - [anon_sym_DOLLAR] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(3051), [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), [anon_sym_BQUOTE] = ACTIONS(2752), - [sym_comment] = ACTIONS(64), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3051), }, - [1327] = { + [1322] = { + [sym_file_descriptor] = ACTIONS(2756), + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), [anon_sym_DQUOTE] = ACTIONS(2756), - [sym__string_content] = ACTIONS(3053), - [anon_sym_DOLLAR] = ACTIONS(2756), + [sym_raw_string] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(3053), [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3053), + }, + [1323] = { + [anon_sym_RBRACE] = ACTIONS(3083), + [sym_comment] = ACTIONS(50), + }, + [1324] = { + [anon_sym_RBRACE] = ACTIONS(3085), + [sym_comment] = ACTIONS(50), + }, + [1325] = { + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym__string_content] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_comment] = ACTIONS(64), + }, + [1326] = { + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym__string_content] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [sym_comment] = ACTIONS(64), + }, + [1327] = { + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym__string_content] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), [sym_comment] = ACTIONS(64), }, [1328] = { - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym__string_content] = ACTIONS(3055), - [anon_sym_DOLLAR] = ACTIONS(2760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), - [anon_sym_BQUOTE] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym__string_content] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), [sym_comment] = ACTIONS(64), }, [1329] = { - [sym_file_descriptor] = ACTIONS(3089), - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_PIPE_AMP] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_GT] = ACTIONS(3091), - [anon_sym_AMP_GT_GT] = ACTIONS(3091), - [anon_sym_LT_AMP] = ACTIONS(3091), - [anon_sym_GT_AMP] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_LT_LT_DASH] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_raw_string] = ACTIONS(3091), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), - [anon_sym_BQUOTE] = ACTIONS(3091), - [anon_sym_LT_LPAREN] = ACTIONS(3091), - [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3087), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(3089), + [anon_sym_LT_AMP] = ACTIONS(3089), + [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_LT_LPAREN] = ACTIONS(3089), + [anon_sym_GT_LPAREN] = ACTIONS(3089), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), + [sym_identifier] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), }, [1330] = { - [sym_file_descriptor] = ACTIONS(3093), - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym_file_descriptor] = ACTIONS(3091), + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3093), + [anon_sym_LT_AMP] = ACTIONS(3093), + [anon_sym_GT_AMP] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3093), + [anon_sym_GT_LPAREN] = ACTIONS(3093), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), }, [1331] = { - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_BQUOTE] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3097), + [anon_sym_PIPE_AMP] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3097), + [anon_sym_BQUOTE] = ACTIONS(3097), [sym_comment] = ACTIONS(50), }, [1332] = { - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_PIPE_AMP] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_BQUOTE] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(3101), + [anon_sym_PIPE_AMP] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_BQUOTE] = ACTIONS(3101), [sym_comment] = ACTIONS(50), }, [1333] = { - [anon_sym_fi] = ACTIONS(3105), + [anon_sym_fi] = ACTIONS(3103), [sym_comment] = ACTIONS(50), }, [1334] = { - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3109), - [anon_sym_PIPE_AMP] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_BQUOTE] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(3107), + [anon_sym_PIPE_AMP] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_PIPE_PIPE] = ACTIONS(3107), + [anon_sym_BQUOTE] = ACTIONS(3107), [sym_comment] = ACTIONS(50), }, [1335] = { @@ -30965,10 +30999,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(3111), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(3109), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -30976,15 +31010,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1336] = { - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_PIPE_AMP] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_BQUOTE] = ACTIONS(3115), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_PIPE_AMP] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_BQUOTE] = ACTIONS(3113), [sym_comment] = ACTIONS(50), }, [1337] = { @@ -30996,10 +31030,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(733), [sym_process_substitution] = STATE(733), [aux_sym_case_statement_repeat1] = STATE(1016), - [sym_word] = ACTIONS(1426), - [anon_sym_esac] = ACTIONS(3117), + [sym_word] = ACTIONS(1424), + [anon_sym_esac] = ACTIONS(3115), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1426), + [sym_raw_string] = ACTIONS(1424), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31007,44 +31041,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), }, [1338] = { - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3121), - [anon_sym_PIPE_AMP] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_PIPE] = ACTIONS(3117), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_PIPE_AMP] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_BQUOTE] = ACTIONS(3119), [sym_comment] = ACTIONS(50), }, [1339] = { [aux_sym_concatenation_repeat1] = STATE(1343), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_PIPE_AMP] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(723), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), [sym_comment] = ACTIONS(50), }, [1340] = { [aux_sym_concatenation_repeat1] = STATE(1358), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), [sym_comment] = ACTIONS(50), }, [1341] = { - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_PIPE_AMP] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), [sym_comment] = ACTIONS(50), }, [1342] = { @@ -31053,22 +31087,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1489), [sym_command_substitution] = STATE(1489), [sym_process_substitution] = STATE(1489), - [sym_word] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym_raw_string] = ACTIONS(3123), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2334), - [anon_sym_BQUOTE] = ACTIONS(2336), - [anon_sym_LT_LPAREN] = ACTIONS(2338), - [anon_sym_GT_LPAREN] = ACTIONS(2338), + [sym_word] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_LT_LPAREN] = ACTIONS(2336), + [anon_sym_GT_LPAREN] = ACTIONS(2336), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3123), }, [1343] = { [aux_sym_concatenation_repeat1] = STATE(1491), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(890), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_RPAREN] = ACTIONS(282), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), @@ -31077,7 +31111,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1344] = { [sym__concat] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(890), [anon_sym_RPAREN] = ACTIONS(446), [anon_sym_PIPE_AMP] = ACTIONS(446), [anon_sym_AMP_AMP] = ACTIONS(446), @@ -31090,7 +31124,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(92), [sym_command_substitution] = STATE(92), [aux_sym_string_repeat1] = STATE(291), - [anon_sym_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3125), [sym__string_content] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [anon_sym_DOLLAR_LBRACE] = ACTIONS(150), @@ -31099,50 +31133,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(64), }, [1346] = { - [sym__concat] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_PIPE_AMP] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_BQUOTE] = ACTIONS(466), + [sym__concat] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(464), + [anon_sym_PIPE_AMP] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(464), + [anon_sym_PIPE_PIPE] = ACTIONS(464), + [anon_sym_BQUOTE] = ACTIONS(464), [sym_comment] = ACTIONS(50), }, [1347] = { - [sym__concat] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_PIPE_AMP] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_BQUOTE] = ACTIONS(470), + [sym__concat] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_PIPE_AMP] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_BQUOTE] = ACTIONS(468), [sym_comment] = ACTIONS(50), }, [1348] = { - [sym__concat] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_PIPE_AMP] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_BQUOTE] = ACTIONS(474), + [sym__concat] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(896), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_PIPE_AMP] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_BQUOTE] = ACTIONS(472), [sym_comment] = ACTIONS(50), }, [1349] = { [sym_special_variable_name] = STATE(1494), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), [anon_sym_DOLLAR] = ACTIONS(162), [anon_sym_POUND] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), - [anon_sym_COLON] = ACTIONS(478), - [anon_sym_COLON_QMARK] = ACTIONS(466), - [anon_sym_COLON_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_QMARK] = ACTIONS(464), + [anon_sym_COLON_DASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3127), [anon_sym_STAR] = ACTIONS(162), [anon_sym_QMARK] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), @@ -31151,44 +31185,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(168), }, [1350] = { - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3137), - [anon_sym_COLON_QMARK] = ACTIONS(3135), - [anon_sym_COLON_DASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), + [anon_sym_RBRACE] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3135), + [anon_sym_COLON_QMARK] = ACTIONS(3133), + [anon_sym_COLON_DASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), [sym_comment] = ACTIONS(50), }, [1351] = { - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_EQ] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3145), - [anon_sym_COLON_QMARK] = ACTIONS(3143), - [anon_sym_COLON_DASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_COLON_QMARK] = ACTIONS(3141), + [anon_sym_COLON_DASH] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), [sym_comment] = ACTIONS(50), }, [1352] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(3145), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [1353] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(3145), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -31208,21 +31242,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(266), }, [1354] = { - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_BQUOTE] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(3145), [sym_comment] = ACTIONS(50), }, [1355] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_PIPE_AMP] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PIPE_AMP] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -31235,29 +31269,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(266), [anon_sym_DOLLAR_LBRACE] = ACTIONS(262), [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(3147), + [anon_sym_BQUOTE] = ACTIONS(3145), [anon_sym_LT_LPAREN] = ACTIONS(262), [anon_sym_GT_LPAREN] = ACTIONS(262), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(266), }, [1356] = { - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(3149), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [sym_comment] = ACTIONS(50), }, [1357] = { [sym_file_descriptor] = ACTIONS(262), [sym_word] = ACTIONS(262), [sym_variable_name] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(3149), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_PIPE_AMP] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(542), + [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_LT] = ACTIONS(266), [anon_sym_GT] = ACTIONS(266), [anon_sym_GT_GT] = ACTIONS(262), @@ -31278,103 +31312,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1358] = { [aux_sym_concatenation_repeat1] = STATE(1491), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [1359] = { - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(731), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(729), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [1360] = { - [sym_word] = ACTIONS(735), - [sym__concat] = ACTIONS(735), - [sym_variable_name] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), + [sym_word] = ACTIONS(733), + [sym__concat] = ACTIONS(733), + [sym_variable_name] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1527), }, [1361] = { [aux_sym_concatenation_repeat1] = STATE(1361), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(3151), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(3149), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [1362] = { - [sym_word] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), + [sym_word] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2760), }, [1363] = { - [sym_word] = ACTIONS(1037), - [sym__concat] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), + [sym_word] = ACTIONS(1035), + [sym__concat] = ACTIONS(1035), + [sym_variable_name] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1532), }, [1364] = { - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), [sym_comment] = ACTIONS(50), }, [1365] = { - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), [sym_comment] = ACTIONS(50), }, [1366] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), + [sym_word] = ACTIONS(1064), + [sym__concat] = ACTIONS(1064), + [sym_variable_name] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_PIPE_AMP] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1542), }, [1367] = { - [anon_sym_AT] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3160), [sym_comment] = ACTIONS(50), }, [1368] = { @@ -31384,10 +31418,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1508), [sym_command_substitution] = STATE(1508), [sym_process_substitution] = STATE(1508), - [sym_word] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3166), + [sym_word] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3164), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(3164), + [sym_raw_string] = ACTIONS(3162), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31395,23 +31429,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3166), }, [1369] = { - [sym_word] = ACTIONS(1078), - [sym__concat] = ACTIONS(1078), - [sym_variable_name] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), + [sym_word] = ACTIONS(1076), + [sym__concat] = ACTIONS(1076), + [sym_variable_name] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1552), }, [1370] = { - [anon_sym_AT] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3168), [sym_comment] = ACTIONS(50), }, [1371] = { @@ -31421,10 +31455,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1513), [sym_command_substitution] = STATE(1513), [sym_process_substitution] = STATE(1513), - [sym_word] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3158), + [sym_word] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3156), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(3172), + [sym_raw_string] = ACTIONS(3170), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31432,292 +31466,292 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3172), }, [1372] = { - [sym_word] = ACTIONS(1162), - [sym__concat] = ACTIONS(1162), - [sym_variable_name] = ACTIONS(1162), + [sym_word] = ACTIONS(1160), + [sym__concat] = ACTIONS(1160), + [sym_variable_name] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(1560), + }, + [1373] = { + [sym_word] = ACTIONS(1212), + [sym__concat] = ACTIONS(1212), + [sym_variable_name] = ACTIONS(1212), [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_PIPE_AMP] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_PIPE_AMP] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(1562), }, - [1373] = { - [sym_word] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym_variable_name] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1564), - }, [1374] = { - [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3174), [sym_comment] = ACTIONS(50), }, [1375] = { - [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3176), [sym_comment] = ACTIONS(50), }, [1376] = { - [sym_file_descriptor] = ACTIONS(2746), - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), + [sym_file_descriptor] = ACTIONS(2744), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2744), + [anon_sym_LT_AMP] = ACTIONS(2744), + [anon_sym_GT_AMP] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_LT_LT_DASH] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2744), + [sym_raw_string] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [anon_sym_LT_LPAREN] = ACTIONS(2744), + [anon_sym_GT_LPAREN] = ACTIONS(2744), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3047), + }, + [1377] = { + [sym_file_descriptor] = ACTIONS(2748), + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_PIPE_AMP] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), [anon_sym_LT] = ACTIONS(3049), [anon_sym_GT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2748), [anon_sym_AMP_GT] = ACTIONS(3049), - [anon_sym_AMP_GT_GT] = ACTIONS(2746), - [anon_sym_LT_AMP] = ACTIONS(2746), - [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_AMP_GT_GT] = ACTIONS(2748), + [anon_sym_LT_AMP] = ACTIONS(2748), + [anon_sym_GT_AMP] = ACTIONS(2748), [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_LT_LT_DASH] = ACTIONS(2746), - [anon_sym_DQUOTE] = ACTIONS(2746), - [sym_raw_string] = ACTIONS(2746), + [anon_sym_LT_LT_DASH] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_raw_string] = ACTIONS(2748), [anon_sym_DOLLAR] = ACTIONS(3049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), - [anon_sym_BQUOTE] = ACTIONS(2746), - [anon_sym_LT_LPAREN] = ACTIONS(2746), - [anon_sym_GT_LPAREN] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [anon_sym_LT_LPAREN] = ACTIONS(2748), + [anon_sym_GT_LPAREN] = ACTIONS(2748), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3049), }, - [1377] = { - [sym_file_descriptor] = ACTIONS(2750), - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), + [1378] = { + [sym_file_descriptor] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), [anon_sym_LT] = ACTIONS(3051), [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2752), [anon_sym_AMP_GT] = ACTIONS(3051), - [anon_sym_AMP_GT_GT] = ACTIONS(2750), - [anon_sym_LT_AMP] = ACTIONS(2750), - [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_LT_LT_DASH] = ACTIONS(2750), - [anon_sym_DQUOTE] = ACTIONS(2750), - [sym_raw_string] = ACTIONS(2750), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [sym_raw_string] = ACTIONS(2752), [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), - [anon_sym_BQUOTE] = ACTIONS(2750), - [anon_sym_LT_LPAREN] = ACTIONS(2750), - [anon_sym_GT_LPAREN] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [anon_sym_LT_LPAREN] = ACTIONS(2752), + [anon_sym_GT_LPAREN] = ACTIONS(2752), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3051), }, - [1378] = { - [sym_file_descriptor] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), + [1379] = { + [sym_file_descriptor] = ACTIONS(2756), + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), [anon_sym_LT] = ACTIONS(3053), [anon_sym_GT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2756), [anon_sym_AMP_GT] = ACTIONS(3053), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_LT_LT_DASH] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2754), - [sym_raw_string] = ACTIONS(2754), + [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym_raw_string] = ACTIONS(2756), [anon_sym_DOLLAR] = ACTIONS(3053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [anon_sym_LT_LPAREN] = ACTIONS(2754), - [anon_sym_GT_LPAREN] = ACTIONS(2754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [anon_sym_LT_LPAREN] = ACTIONS(2756), + [anon_sym_GT_LPAREN] = ACTIONS(2756), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3053), }, - [1379] = { - [sym_file_descriptor] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_GT] = ACTIONS(3055), - [anon_sym_AMP_GT_GT] = ACTIONS(2758), - [anon_sym_LT_AMP] = ACTIONS(2758), - [anon_sym_GT_AMP] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_LT_LT_DASH] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [sym_raw_string] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [anon_sym_LT_LPAREN] = ACTIONS(2758), - [anon_sym_GT_LPAREN] = ACTIONS(2758), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3055), - }, [1380] = { - [sym_file_descriptor] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(2154), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(1629), - [anon_sym_AMP_GT] = ACTIONS(2154), - [anon_sym_AMP_GT_GT] = ACTIONS(1629), - [anon_sym_LT_AMP] = ACTIONS(1629), - [anon_sym_GT_AMP] = ACTIONS(1629), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_LT_LT_DASH] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), + [sym_file_descriptor] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2152), + [anon_sym_GT_GT] = ACTIONS(1627), + [anon_sym_AMP_GT] = ACTIONS(2152), + [anon_sym_AMP_GT_GT] = ACTIONS(1627), + [anon_sym_LT_AMP] = ACTIONS(1627), + [anon_sym_GT_AMP] = ACTIONS(1627), + [anon_sym_LT_LT] = ACTIONS(2152), + [anon_sym_LT_LT_DASH] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), [sym_comment] = ACTIONS(50), }, [1381] = { - [anon_sym_AT] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3178), [sym_comment] = ACTIONS(50), }, [1382] = { - [sym_file_descriptor] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_PIPE_AMP] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_PIPE_PIPE] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(1635), - [anon_sym_AMP_GT] = ACTIONS(2158), - [anon_sym_AMP_GT_GT] = ACTIONS(1635), - [anon_sym_LT_AMP] = ACTIONS(1635), - [anon_sym_GT_AMP] = ACTIONS(1635), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_LT_LT_DASH] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_file_descriptor] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1633), + [anon_sym_PIPE_PIPE] = ACTIONS(1633), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_GT_GT] = ACTIONS(1633), + [anon_sym_AMP_GT] = ACTIONS(2156), + [anon_sym_AMP_GT_GT] = ACTIONS(1633), + [anon_sym_LT_AMP] = ACTIONS(1633), + [anon_sym_GT_AMP] = ACTIONS(1633), + [anon_sym_LT_LT] = ACTIONS(2156), + [anon_sym_LT_LT_DASH] = ACTIONS(1633), + [anon_sym_BQUOTE] = ACTIONS(1633), [sym_comment] = ACTIONS(50), }, [1383] = { - [anon_sym_AT] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3180), [sym_comment] = ACTIONS(50), }, [1384] = { - [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_RBRACK] = ACTIONS(3182), [sym_comment] = ACTIONS(50), }, [1385] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3188), + [sym__concat] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3186), [sym_comment] = ACTIONS(50), }, [1386] = { - [sym_file_descriptor] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_PIPE_AMP] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_PIPE_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_AMP_GT] = ACTIONS(2168), - [anon_sym_AMP_GT_GT] = ACTIONS(1647), - [anon_sym_LT_AMP] = ACTIONS(1647), - [anon_sym_GT_AMP] = ACTIONS(1647), - [anon_sym_LT_LT] = ACTIONS(2168), - [anon_sym_LT_LT_DASH] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_file_descriptor] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_PIPE_AMP] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1645), + [anon_sym_PIPE_PIPE] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(1645), + [anon_sym_AMP_GT] = ACTIONS(2166), + [anon_sym_AMP_GT_GT] = ACTIONS(1645), + [anon_sym_LT_AMP] = ACTIONS(1645), + [anon_sym_GT_AMP] = ACTIONS(1645), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_LT_LT_DASH] = ACTIONS(1645), + [anon_sym_BQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(50), }, [1387] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3192), + [sym__concat] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3190), [sym_comment] = ACTIONS(50), }, [1388] = { - [sym__concat] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3188), + [sym__concat] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3186), [sym_comment] = ACTIONS(50), }, [1389] = { - [anon_sym_RBRACK] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3192), [sym_comment] = ACTIONS(50), }, [1390] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3198), + [sym__concat] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3196), [sym_comment] = ACTIONS(50), }, [1391] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3202), + [sym__concat] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3200), [sym_comment] = ACTIONS(50), }, [1392] = { - [sym__concat] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3198), + [sym__concat] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3196), [sym_comment] = ACTIONS(50), }, [1393] = { [aux_sym_concatenation_repeat1] = STATE(1395), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(723), - [anon_sym_AMP_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(723), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(723), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), [sym_comment] = ACTIONS(50), }, [1394] = { [aux_sym_concatenation_repeat1] = STATE(1396), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(727), - [anon_sym_AMP_AMP] = ACTIONS(727), - [anon_sym_PIPE_PIPE] = ACTIONS(727), - [anon_sym_BQUOTE] = ACTIONS(727), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), [sym_comment] = ACTIONS(50), }, [1395] = { [aux_sym_concatenation_repeat1] = STATE(1530), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(890), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(888), [anon_sym_PIPE_AMP] = ACTIONS(282), [anon_sym_AMP_AMP] = ACTIONS(282), [anon_sym_PIPE_PIPE] = ACTIONS(282), @@ -31726,37 +31760,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1396] = { [aux_sym_concatenation_repeat1] = STATE(1530), - [sym__concat] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_BQUOTE] = ACTIONS(596), + [sym__concat] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_BQUOTE] = ACTIONS(594), [sym_comment] = ACTIONS(50), }, [1397] = { [aux_sym_concatenation_repeat1] = STATE(1397), - [sym_word] = ACTIONS(731), - [sym__concat] = ACTIONS(3151), - [sym_variable_name] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), + [sym_word] = ACTIONS(729), + [sym__concat] = ACTIONS(3149), + [sym_variable_name] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1525), }, [1398] = { - [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_RBRACK] = ACTIONS(3202), [sym_comment] = ACTIONS(50), }, [1399] = { - [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_RBRACK] = ACTIONS(3204), [sym_comment] = ACTIONS(50), }, [1400] = { - [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3206), [sym_comment] = ACTIONS(50), }, [1401] = { @@ -31765,10 +31799,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3208), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3206), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31776,30 +31810,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1402] = { - [sym_file_descriptor] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_GT] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2270), - [anon_sym_AMP_GT] = ACTIONS(2270), - [anon_sym_AMP_GT_GT] = ACTIONS(2270), - [anon_sym_LT_AMP] = ACTIONS(2270), - [anon_sym_GT_AMP] = ACTIONS(2270), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_LT_LT_DASH] = ACTIONS(2270), + [sym_file_descriptor] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2268), + [anon_sym_GT_GT] = ACTIONS(2268), + [anon_sym_AMP_GT] = ACTIONS(2268), + [anon_sym_AMP_GT_GT] = ACTIONS(2268), + [anon_sym_LT_AMP] = ACTIONS(2268), + [anon_sym_GT_AMP] = ACTIONS(2268), + [anon_sym_LT_LT] = ACTIONS(2268), + [anon_sym_LT_LT_DASH] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [1403] = { [sym_string] = STATE(668), @@ -31807,10 +31841,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3210), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3208), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31818,33 +31852,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1404] = { - [sym_file_descriptor] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), - [anon_sym_PIPE_AMP] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_GT] = ACTIONS(2276), - [anon_sym_GT_GT] = ACTIONS(2276), - [anon_sym_AMP_GT] = ACTIONS(2276), - [anon_sym_AMP_GT_GT] = ACTIONS(2276), - [anon_sym_LT_AMP] = ACTIONS(2276), - [anon_sym_GT_AMP] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2276), - [anon_sym_LT_LT_DASH] = ACTIONS(2276), + [sym_file_descriptor] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_GT] = ACTIONS(2274), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_AMP_GT] = ACTIONS(2274), + [anon_sym_AMP_GT_GT] = ACTIONS(2274), + [anon_sym_LT_AMP] = ACTIONS(2274), + [anon_sym_GT_AMP] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_LT_LT_DASH] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [1405] = { - [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3210), [sym_comment] = ACTIONS(50), }, [1406] = { @@ -31853,10 +31887,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3212), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3210), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31864,30 +31898,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1407] = { - [sym_file_descriptor] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(2282), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_LT_LT_DASH] = ACTIONS(2282), + [sym_file_descriptor] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_GT] = ACTIONS(2280), + [anon_sym_GT_GT] = ACTIONS(2280), + [anon_sym_AMP_GT] = ACTIONS(2280), + [anon_sym_AMP_GT_GT] = ACTIONS(2280), + [anon_sym_LT_AMP] = ACTIONS(2280), + [anon_sym_GT_AMP] = ACTIONS(2280), + [anon_sym_LT_LT] = ACTIONS(2280), + [anon_sym_LT_LT_DASH] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [1408] = { [sym_string] = STATE(668), @@ -31895,10 +31929,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3214), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3212), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -31906,288 +31940,288 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1409] = { - [sym_file_descriptor] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2288), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_LT_LT_DASH] = ACTIONS(2288), + [sym_file_descriptor] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_GT] = ACTIONS(2286), + [anon_sym_GT_GT] = ACTIONS(2286), + [anon_sym_AMP_GT] = ACTIONS(2286), + [anon_sym_AMP_GT_GT] = ACTIONS(2286), + [anon_sym_LT_AMP] = ACTIONS(2286), + [anon_sym_GT_AMP] = ACTIONS(2286), + [anon_sym_LT_LT] = ACTIONS(2286), + [anon_sym_LT_LT_DASH] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [1410] = { - [sym__heredoc_middle] = ACTIONS(1629), - [sym__heredoc_end] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [sym__heredoc_middle] = ACTIONS(1627), + [sym__heredoc_end] = ACTIONS(1627), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1627), [sym_comment] = ACTIONS(50), }, [1411] = { - [anon_sym_AT] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3214), [sym_comment] = ACTIONS(50), }, [1412] = { - [sym__heredoc_middle] = ACTIONS(1635), - [sym__heredoc_end] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1635), + [sym__heredoc_middle] = ACTIONS(1633), + [sym__heredoc_end] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1633), [sym_comment] = ACTIONS(50), }, [1413] = { - [anon_sym_AT] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3216), [sym_comment] = ACTIONS(50), }, [1414] = { - [anon_sym_RBRACK] = ACTIONS(3220), + [anon_sym_RBRACK] = ACTIONS(3218), [sym_comment] = ACTIONS(50), }, [1415] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3224), + [sym__concat] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3222), [sym_comment] = ACTIONS(50), }, [1416] = { - [sym__heredoc_middle] = ACTIONS(1647), - [sym__heredoc_end] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(2168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1647), + [sym__heredoc_middle] = ACTIONS(1645), + [sym__heredoc_end] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1645), [sym_comment] = ACTIONS(50), }, [1417] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3228), + [sym__concat] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3226), [sym_comment] = ACTIONS(50), }, [1418] = { - [sym__concat] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3224), + [sym__concat] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3222), [sym_comment] = ACTIONS(50), }, [1419] = { - [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3228), [sym_comment] = ACTIONS(50), }, [1420] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3234), + [sym__concat] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3232), [sym_comment] = ACTIONS(50), }, [1421] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3238), + [sym__concat] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3236), [sym_comment] = ACTIONS(50), }, [1422] = { - [sym__concat] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3234), + [sym__concat] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3232), [sym_comment] = ACTIONS(50), }, [1423] = { - [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3238), [sym_comment] = ACTIONS(50), }, [1424] = { - [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3240), [sym_comment] = ACTIONS(50), }, [1425] = { - [sym__concat] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_RBRACK] = ACTIONS(2746), + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_RBRACK] = ACTIONS(2744), [sym_comment] = ACTIONS(50), }, [1426] = { - [sym__concat] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_RBRACK] = ACTIONS(2750), + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_RBRACK] = ACTIONS(2748), [sym_comment] = ACTIONS(50), }, [1427] = { - [sym__concat] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_RBRACK] = ACTIONS(2754), + [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_RBRACK] = ACTIONS(2752), [sym_comment] = ACTIONS(50), }, [1428] = { - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_RBRACK] = ACTIONS(2758), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_RBRACK] = ACTIONS(2756), [sym_comment] = ACTIONS(50), }, [1429] = { - [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3242), [sym_comment] = ACTIONS(50), }, [1430] = { - [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3244), [sym_comment] = ACTIONS(50), }, [1431] = { - [sym_file_descriptor] = ACTIONS(2746), - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [sym_variable_name] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [anon_sym_PIPE_AMP] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_PIPE_PIPE] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_GT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_AMP_GT] = ACTIONS(2748), - [anon_sym_AMP_GT_GT] = ACTIONS(2748), - [anon_sym_LT_AMP] = ACTIONS(2748), - [anon_sym_GT_AMP] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_raw_string] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), - [anon_sym_BQUOTE] = ACTIONS(2748), - [anon_sym_LT_LPAREN] = ACTIONS(2748), - [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_file_descriptor] = ACTIONS(2744), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [sym_variable_name] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_GT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_GT] = ACTIONS(2746), + [anon_sym_AMP_GT_GT] = ACTIONS(2746), + [anon_sym_LT_AMP] = ACTIONS(2746), + [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym_raw_string] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(2746), + [anon_sym_GT_LPAREN] = ACTIONS(2746), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), }, [1432] = { - [sym_file_descriptor] = ACTIONS(2750), - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [sym_variable_name] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), - [anon_sym_PIPE_AMP] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_AMP_GT] = ACTIONS(2752), - [anon_sym_AMP_GT_GT] = ACTIONS(2752), - [anon_sym_LT_AMP] = ACTIONS(2752), - [anon_sym_GT_AMP] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_raw_string] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), - [anon_sym_BQUOTE] = ACTIONS(2752), - [anon_sym_LT_LPAREN] = ACTIONS(2752), - [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_file_descriptor] = ACTIONS(2748), + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [sym_variable_name] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(2750), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), }, [1433] = { - [sym_file_descriptor] = ACTIONS(2754), - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2756), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_file_descriptor] = ACTIONS(2752), + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [sym_variable_name] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(2754), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_raw_string] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_LT_LPAREN] = ACTIONS(2754), + [anon_sym_GT_LPAREN] = ACTIONS(2754), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1434] = { - [sym_file_descriptor] = ACTIONS(2758), - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [sym_variable_name] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), - [anon_sym_PIPE_AMP] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_PIPE_PIPE] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_GT] = ACTIONS(2760), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_AMP_GT] = ACTIONS(2760), - [anon_sym_AMP_GT_GT] = ACTIONS(2760), - [anon_sym_LT_AMP] = ACTIONS(2760), - [anon_sym_GT_AMP] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_raw_string] = ACTIONS(2760), - [anon_sym_DOLLAR] = ACTIONS(2760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), - [anon_sym_BQUOTE] = ACTIONS(2760), - [anon_sym_LT_LPAREN] = ACTIONS(2760), - [anon_sym_GT_LPAREN] = ACTIONS(2760), + [sym_file_descriptor] = ACTIONS(2756), + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1435] = { - [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3246), [sym_comment] = ACTIONS(50), }, [1436] = { - [anon_sym_RBRACK] = ACTIONS(3250), + [anon_sym_RBRACK] = ACTIONS(3248), [sym_comment] = ACTIONS(50), }, [1437] = { - [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3250), [sym_comment] = ACTIONS(50), }, [1438] = { @@ -32196,10 +32230,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3252), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3250), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32207,25 +32241,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1439] = { - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym_raw_string] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2270), - [anon_sym_BQUOTE] = ACTIONS(2270), - [anon_sym_LT_LPAREN] = ACTIONS(2270), - [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym_raw_string] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2268), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2268), + [anon_sym_GT_LPAREN] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [1440] = { [sym_string] = STATE(668), @@ -32233,10 +32267,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3254), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3252), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32244,28 +32278,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1441] = { - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_raw_string] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2276), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_LT_LPAREN] = ACTIONS(2276), - [anon_sym_GT_LPAREN] = ACTIONS(2276), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_raw_string] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2274), + [anon_sym_BQUOTE] = ACTIONS(2274), + [anon_sym_LT_LPAREN] = ACTIONS(2274), + [anon_sym_GT_LPAREN] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [1442] = { - [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3254), [sym_comment] = ACTIONS(50), }, [1443] = { @@ -32274,10 +32308,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3256), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3254), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32285,25 +32319,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1444] = { - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [sym_raw_string] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2282), - [anon_sym_BQUOTE] = ACTIONS(2282), - [anon_sym_LT_LPAREN] = ACTIONS(2282), - [anon_sym_GT_LPAREN] = ACTIONS(2282), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym_raw_string] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2280), + [anon_sym_BQUOTE] = ACTIONS(2280), + [anon_sym_LT_LPAREN] = ACTIONS(2280), + [anon_sym_GT_LPAREN] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [1445] = { [sym_string] = STATE(668), @@ -32311,10 +32345,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3258), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3256), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32322,39 +32356,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1446] = { - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [sym_raw_string] = ACTIONS(2288), - [anon_sym_DOLLAR] = ACTIONS(2288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2288), - [anon_sym_BQUOTE] = ACTIONS(2288), - [anon_sym_LT_LPAREN] = ACTIONS(2288), - [anon_sym_GT_LPAREN] = ACTIONS(2288), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2286), + [anon_sym_LT_LPAREN] = ACTIONS(2286), + [anon_sym_GT_LPAREN] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [1447] = { - [sym_word] = ACTIONS(3260), - [anon_sym_esac] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3260), - [sym_raw_string] = ACTIONS(3260), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3260), - [anon_sym_BQUOTE] = ACTIONS(3260), - [anon_sym_LT_LPAREN] = ACTIONS(3260), - [anon_sym_GT_LPAREN] = ACTIONS(3260), + [sym_word] = ACTIONS(3258), + [anon_sym_esac] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_raw_string] = ACTIONS(3258), + [anon_sym_DOLLAR] = ACTIONS(3260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3258), + [anon_sym_BQUOTE] = ACTIONS(3258), + [anon_sym_LT_LPAREN] = ACTIONS(3258), + [anon_sym_GT_LPAREN] = ACTIONS(3258), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3262), }, [1448] = { [sym__terminated_statement] = STATE(23), @@ -32381,40 +32415,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(3), [aux_sym_program_repeat1] = STATE(1448), [aux_sym_command_repeat1] = STATE(31), - [sym_file_descriptor] = ACTIONS(640), - [sym_word] = ACTIONS(643), - [sym_variable_name] = ACTIONS(646), - [anon_sym_for] = ACTIONS(651), - [anon_sym_while] = ACTIONS(654), - [anon_sym_if] = ACTIONS(657), - [anon_sym_case] = ACTIONS(660), - [anon_sym_SEMI_SEMI] = ACTIONS(649), - [anon_sym_function] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LBRACK_LBRACK] = ACTIONS(672), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_typeset] = ACTIONS(675), - [anon_sym_export] = ACTIONS(675), - [anon_sym_readonly] = ACTIONS(675), - [anon_sym_local] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(678), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(684), - [sym_raw_string] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(693), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_file_descriptor] = ACTIONS(638), + [sym_word] = ACTIONS(641), + [sym_variable_name] = ACTIONS(644), + [anon_sym_for] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_case] = ACTIONS(658), + [anon_sym_SEMI_SEMI] = ACTIONS(647), + [anon_sym_function] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(670), + [anon_sym_declare] = ACTIONS(673), + [anon_sym_typeset] = ACTIONS(673), + [anon_sym_export] = ACTIONS(673), + [anon_sym_readonly] = ACTIONS(673), + [anon_sym_local] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(676), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(676), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym_raw_string] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(694), + [anon_sym_LT_LPAREN] = ACTIONS(697), + [anon_sym_GT_LPAREN] = ACTIONS(697), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(700), }, [1449] = { [sym__terminated_statement] = STATE(23), @@ -32448,7 +32482,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3266), + [anon_sym_SEMI_SEMI] = ACTIONS(3264), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -32477,18 +32511,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [1450] = { - [sym_word] = ACTIONS(3268), - [anon_sym_esac] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3268), - [sym_raw_string] = ACTIONS(3268), - [anon_sym_DOLLAR] = ACTIONS(3270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3268), - [anon_sym_BQUOTE] = ACTIONS(3268), - [anon_sym_LT_LPAREN] = ACTIONS(3268), - [anon_sym_GT_LPAREN] = ACTIONS(3268), + [sym_word] = ACTIONS(3266), + [anon_sym_esac] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3266), + [sym_raw_string] = ACTIONS(3266), + [anon_sym_DOLLAR] = ACTIONS(3268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3266), + [anon_sym_BQUOTE] = ACTIONS(3266), + [anon_sym_LT_LPAREN] = ACTIONS(3266), + [anon_sym_GT_LPAREN] = ACTIONS(3266), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3270), }, [1451] = { [sym__terminated_statement] = STATE(23), @@ -32522,7 +32556,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3274), + [anon_sym_SEMI_SEMI] = ACTIONS(3272), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -32551,170 +32585,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(52), }, [1452] = { - [sym__concat] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3091), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [sym__concat] = ACTIONS(3087), + [anon_sym_in] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), }, [1453] = { - [sym__concat] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), + [sym__concat] = ACTIONS(3091), + [anon_sym_in] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), }, [1454] = { - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_SEMI_SEMI] = ACTIONS(1631), - [anon_sym_PIPE_AMP] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_LF] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [1455] = { - [anon_sym_AT] = ACTIONS(3276), + [anon_sym_AT] = ACTIONS(3274), [sym_comment] = ACTIONS(50), }, [1456] = { - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_SEMI_SEMI] = ACTIONS(1637), - [anon_sym_PIPE_AMP] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1637), - [anon_sym_PIPE_PIPE] = ACTIONS(1637), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_SEMI_SEMI] = ACTIONS(1635), + [anon_sym_PIPE_AMP] = ACTIONS(1635), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_PIPE_PIPE] = ACTIONS(1635), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_LF] = ACTIONS(1637), - [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), }, [1457] = { - [anon_sym_AT] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3276), [sym_comment] = ACTIONS(50), }, [1458] = { - [anon_sym_RBRACK] = ACTIONS(3280), + [anon_sym_RBRACK] = ACTIONS(3278), [sym_comment] = ACTIONS(50), }, [1459] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3284), + [sym__concat] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3282), [sym_comment] = ACTIONS(50), }, [1460] = { - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_SEMI_SEMI] = ACTIONS(1649), - [anon_sym_PIPE_AMP] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_SEMI_SEMI] = ACTIONS(1647), + [anon_sym_PIPE_AMP] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_PIPE_PIPE] = ACTIONS(1647), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_LF] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), }, [1461] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3288), + [sym__concat] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3286), [sym_comment] = ACTIONS(50), }, [1462] = { - [sym__concat] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3284), + [sym__concat] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3282), [sym_comment] = ACTIONS(50), }, [1463] = { - [anon_sym_RBRACK] = ACTIONS(3290), + [anon_sym_RBRACK] = ACTIONS(3288), [sym_comment] = ACTIONS(50), }, [1464] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3294), + [sym__concat] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3292), [sym_comment] = ACTIONS(50), }, [1465] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3298), + [sym__concat] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3296), [sym_comment] = ACTIONS(50), }, [1466] = { - [sym__concat] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3294), + [sym__concat] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3292), [sym_comment] = ACTIONS(50), }, [1467] = { [aux_sym_concatenation_repeat1] = STATE(1467), - [sym__concat] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_SEMI_SEMI] = ACTIONS(733), - [anon_sym_PIPE_AMP] = ACTIONS(733), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), + [sym__concat] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(731), + [anon_sym_PIPE_AMP] = ACTIONS(731), + [anon_sym_AMP_AMP] = ACTIONS(731), + [anon_sym_PIPE_PIPE] = ACTIONS(731), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LF] = ACTIONS(733), - [anon_sym_AMP] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(731), }, [1468] = { - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_raw_string] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3087), + [anon_sym_BQUOTE] = ACTIONS(3087), + [anon_sym_LT_LPAREN] = ACTIONS(3087), + [anon_sym_GT_LPAREN] = ACTIONS(3087), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3298), + }, + [1469] = { + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3300), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(3089), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_raw_string] = ACTIONS(3091), [anon_sym_DOLLAR] = ACTIONS(3300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(3089), - [anon_sym_LT_LPAREN] = ACTIONS(3089), - [anon_sym_GT_LPAREN] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3300), }, - [1469] = { - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3302), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_raw_string] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3093), - [anon_sym_LT_LPAREN] = ACTIONS(3093), - [anon_sym_GT_LPAREN] = ACTIONS(3093), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3302), - }, [1470] = { - [anon_sym_RBRACK] = ACTIONS(3304), + [anon_sym_RBRACK] = ACTIONS(3302), [sym_comment] = ACTIONS(50), }, [1471] = { - [anon_sym_RBRACK] = ACTIONS(3306), + [anon_sym_RBRACK] = ACTIONS(3304), [sym_comment] = ACTIONS(50), }, [1472] = { - [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3306), [sym_comment] = ACTIONS(50), }, [1473] = { @@ -32723,10 +32757,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3308), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3306), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32734,23 +32768,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1474] = { - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [sym_variable_name] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [sym_variable_name] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [1475] = { [sym_string] = STATE(668), @@ -32758,10 +32792,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3310), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3308), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32769,26 +32803,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1476] = { - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), - [anon_sym_PIPE_AMP] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [sym_variable_name] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [1477] = { - [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3310), [sym_comment] = ACTIONS(50), }, [1478] = { @@ -32797,10 +32831,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3312), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3310), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32808,23 +32842,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1479] = { - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [sym_variable_name] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [1480] = { [sym_string] = STATE(668), @@ -32832,10 +32866,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3314), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3312), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -32843,187 +32877,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1481] = { - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [sym_variable_name] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [sym_variable_name] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [1482] = { - [sym_file_descriptor] = ACTIONS(3089), - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [sym_variable_name] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_GT] = ACTIONS(3300), - [anon_sym_AMP_GT_GT] = ACTIONS(3089), - [anon_sym_LT_AMP] = ACTIONS(3089), - [anon_sym_GT_AMP] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(3089), - [anon_sym_LT_LPAREN] = ACTIONS(3089), - [anon_sym_GT_LPAREN] = ACTIONS(3089), + [sym_file_descriptor] = ACTIONS(3087), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [sym_variable_name] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_PIPE_AMP] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_AMP_GT] = ACTIONS(3298), + [anon_sym_AMP_GT_GT] = ACTIONS(3087), + [anon_sym_LT_AMP] = ACTIONS(3087), + [anon_sym_GT_AMP] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_raw_string] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3087), + [anon_sym_BQUOTE] = ACTIONS(3087), + [anon_sym_LT_LPAREN] = ACTIONS(3087), + [anon_sym_GT_LPAREN] = ACTIONS(3087), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3298), }, [1483] = { - [sym_file_descriptor] = ACTIONS(3093), - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [sym_variable_name] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_PIPE_AMP] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_GT] = ACTIONS(3302), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_GT] = ACTIONS(3302), - [anon_sym_AMP_GT_GT] = ACTIONS(3093), - [anon_sym_LT_AMP] = ACTIONS(3093), - [anon_sym_GT_AMP] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_raw_string] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3093), - [anon_sym_LT_LPAREN] = ACTIONS(3093), - [anon_sym_GT_LPAREN] = ACTIONS(3093), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3302), - }, - [1484] = { + [sym_file_descriptor] = ACTIONS(3091), + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3300), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), [anon_sym_DQUOTE] = ACTIONS(3091), - [sym__string_content] = ACTIONS(3300), - [anon_sym_DOLLAR] = ACTIONS(3091), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3300), [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3300), + }, + [1484] = { + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym__string_content] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), [sym_comment] = ACTIONS(64), }, [1485] = { - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym__string_content] = ACTIONS(3302), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym__string_content] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), [sym_comment] = ACTIONS(64), }, [1486] = { - [anon_sym_PIPE] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3318), - [anon_sym_PIPE_AMP] = ACTIONS(3318), - [anon_sym_AMP_AMP] = ACTIONS(3318), - [anon_sym_PIPE_PIPE] = ACTIONS(3318), - [anon_sym_BQUOTE] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(3316), + [anon_sym_PIPE_AMP] = ACTIONS(3316), + [anon_sym_AMP_AMP] = ACTIONS(3316), + [anon_sym_PIPE_PIPE] = ACTIONS(3316), + [anon_sym_BQUOTE] = ACTIONS(3316), [sym_comment] = ACTIONS(50), }, [1487] = { - [anon_sym_PIPE] = ACTIONS(3320), - [anon_sym_RPAREN] = ACTIONS(3322), - [anon_sym_PIPE_AMP] = ACTIONS(3322), - [anon_sym_AMP_AMP] = ACTIONS(3322), - [anon_sym_PIPE_PIPE] = ACTIONS(3322), - [anon_sym_BQUOTE] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3320), + [anon_sym_PIPE_AMP] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_BQUOTE] = ACTIONS(3320), [sym_comment] = ACTIONS(50), }, [1488] = { - [anon_sym_PIPE] = ACTIONS(3324), - [anon_sym_RPAREN] = ACTIONS(3326), - [anon_sym_PIPE_AMP] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BQUOTE] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3324), + [anon_sym_PIPE_AMP] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_PIPE_PIPE] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3324), [sym_comment] = ACTIONS(50), }, [1489] = { - [sym__concat] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), + [sym__concat] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1490] = { - [sym__concat] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_PIPE_AMP] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(735), - [anon_sym_PIPE_PIPE] = ACTIONS(735), - [anon_sym_BQUOTE] = ACTIONS(735), + [sym__concat] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_PIPE_AMP] = ACTIONS(733), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), [sym_comment] = ACTIONS(50), }, [1491] = { [aux_sym_concatenation_repeat1] = STATE(1491), - [sym__concat] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), + [sym__concat] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1492] = { - [sym__concat] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1037), - [anon_sym_PIPE_AMP] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), + [sym__concat] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_PIPE_AMP] = ACTIONS(1035), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), [sym_comment] = ACTIONS(50), }, [1493] = { - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3331), [sym_comment] = ACTIONS(50), }, [1494] = { - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3335), [sym_comment] = ACTIONS(50), }, [1495] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), + [sym__concat] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_PIPE_AMP] = ACTIONS(1064), + [anon_sym_AMP_AMP] = ACTIONS(1064), + [anon_sym_PIPE_PIPE] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(1064), [sym_comment] = ACTIONS(50), }, [1496] = { - [anon_sym_AT] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3337), [sym_comment] = ACTIONS(50), }, [1497] = { @@ -33033,10 +33067,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1584), [sym_command_substitution] = STATE(1584), [sym_process_substitution] = STATE(1584), - [sym_word] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3343), + [sym_word] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3341), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(3341), + [sym_raw_string] = ACTIONS(3339), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33044,20 +33078,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3343), }, [1498] = { - [sym__concat] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_PIPE_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), + [sym__concat] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(1076), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1076), [sym_comment] = ACTIONS(50), }, [1499] = { - [anon_sym_AT] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3345), [sym_comment] = ACTIONS(50), }, [1500] = { @@ -33067,10 +33101,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1589), [sym_command_substitution] = STATE(1589), [sym_process_substitution] = STATE(1589), - [sym_word] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3335), + [sym_word] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3333), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(3349), + [sym_raw_string] = ACTIONS(3347), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33078,185 +33112,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3349), }, [1501] = { - [sym__concat] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1162), - [anon_sym_PIPE_AMP] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), + [sym__concat] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_PIPE_AMP] = ACTIONS(1160), + [anon_sym_AMP_AMP] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(1160), [sym_comment] = ACTIONS(50), }, [1502] = { - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_BQUOTE] = ACTIONS(1214), + [sym__concat] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_PIPE_AMP] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), + [anon_sym_BQUOTE] = ACTIONS(1212), [sym_comment] = ACTIONS(50), }, [1503] = { - [sym_word] = ACTIONS(1629), - [sym__concat] = ACTIONS(1629), - [sym_variable_name] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), + [sym_word] = ACTIONS(1627), + [sym__concat] = ACTIONS(1627), + [sym_variable_name] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2152), }, [1504] = { - [anon_sym_AT] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3351), [sym_comment] = ACTIONS(50), }, [1505] = { - [sym_word] = ACTIONS(1635), - [sym__concat] = ACTIONS(1635), - [sym_variable_name] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_PIPE_AMP] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_PIPE_PIPE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_word] = ACTIONS(1633), + [sym__concat] = ACTIONS(1633), + [sym_variable_name] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1633), + [anon_sym_PIPE_PIPE] = ACTIONS(1633), + [anon_sym_BQUOTE] = ACTIONS(1633), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2156), }, [1506] = { - [anon_sym_AT] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3353), [sym_comment] = ACTIONS(50), }, [1507] = { - [anon_sym_RBRACK] = ACTIONS(3357), + [anon_sym_RBRACK] = ACTIONS(3355), [sym_comment] = ACTIONS(50), }, [1508] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3361), + [sym__concat] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3359), [sym_comment] = ACTIONS(50), }, [1509] = { - [sym_word] = ACTIONS(1647), - [sym__concat] = ACTIONS(1647), - [sym_variable_name] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_PIPE_AMP] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_PIPE_PIPE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_word] = ACTIONS(1645), + [sym__concat] = ACTIONS(1645), + [sym_variable_name] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_PIPE_AMP] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1645), + [anon_sym_PIPE_PIPE] = ACTIONS(1645), + [anon_sym_BQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), }, [1510] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3365), + [sym__concat] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3363), [sym_comment] = ACTIONS(50), }, [1511] = { - [sym__concat] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3361), + [sym__concat] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3359), [sym_comment] = ACTIONS(50), }, [1512] = { - [anon_sym_RBRACK] = ACTIONS(3367), + [anon_sym_RBRACK] = ACTIONS(3365), [sym_comment] = ACTIONS(50), }, [1513] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3371), + [sym__concat] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3369), [sym_comment] = ACTIONS(50), }, [1514] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3375), + [sym__concat] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3373), [sym_comment] = ACTIONS(50), }, [1515] = { - [sym__concat] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3371), + [sym__concat] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3369), [sym_comment] = ACTIONS(50), }, [1516] = { - [sym_file_descriptor] = ACTIONS(3089), - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), + [sym_file_descriptor] = ACTIONS(3087), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_PIPE_AMP] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_AMP_GT] = ACTIONS(3298), + [anon_sym_AMP_GT_GT] = ACTIONS(3087), + [anon_sym_LT_AMP] = ACTIONS(3087), + [anon_sym_GT_AMP] = ACTIONS(3087), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_LT_LT_DASH] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_raw_string] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3087), + [anon_sym_BQUOTE] = ACTIONS(3087), + [anon_sym_LT_LPAREN] = ACTIONS(3087), + [anon_sym_GT_LPAREN] = ACTIONS(3087), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3298), + }, + [1517] = { + [sym_file_descriptor] = ACTIONS(3091), + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), [anon_sym_LT] = ACTIONS(3300), [anon_sym_GT] = ACTIONS(3300), - [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(3091), [anon_sym_AMP_GT] = ACTIONS(3300), - [anon_sym_AMP_GT_GT] = ACTIONS(3089), - [anon_sym_LT_AMP] = ACTIONS(3089), - [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), [anon_sym_LT_LT] = ACTIONS(3300), - [anon_sym_LT_LT_DASH] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_raw_string] = ACTIONS(3091), [anon_sym_DOLLAR] = ACTIONS(3300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(3089), - [anon_sym_LT_LPAREN] = ACTIONS(3089), - [anon_sym_GT_LPAREN] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3300), }, - [1517] = { - [sym_file_descriptor] = ACTIONS(3093), - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_PIPE_AMP] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_GT] = ACTIONS(3302), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_GT] = ACTIONS(3302), - [anon_sym_AMP_GT_GT] = ACTIONS(3093), - [anon_sym_LT_AMP] = ACTIONS(3093), - [anon_sym_GT_AMP] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3302), - [anon_sym_LT_LT_DASH] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3093), - [sym_raw_string] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3093), - [anon_sym_LT_LPAREN] = ACTIONS(3093), - [anon_sym_GT_LPAREN] = ACTIONS(3093), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3302), - }, [1518] = { - [anon_sym_RBRACK] = ACTIONS(3377), + [anon_sym_RBRACK] = ACTIONS(3375), [sym_comment] = ACTIONS(50), }, [1519] = { - [anon_sym_RBRACK] = ACTIONS(3379), + [anon_sym_RBRACK] = ACTIONS(3377), [sym_comment] = ACTIONS(50), }, [1520] = { - [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3379), [sym_comment] = ACTIONS(50), }, [1521] = { @@ -33265,10 +33299,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3381), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3379), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33276,26 +33310,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1522] = { - [sym_file_descriptor] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_PIPE_AMP] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2679), - [anon_sym_GT] = ACTIONS(2679), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_AMP_GT] = ACTIONS(2679), - [anon_sym_AMP_GT_GT] = ACTIONS(2268), - [anon_sym_LT_AMP] = ACTIONS(2268), - [anon_sym_GT_AMP] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2679), - [anon_sym_LT_LT_DASH] = ACTIONS(2268), - [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_file_descriptor] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_AMP_GT] = ACTIONS(2677), + [anon_sym_AMP_GT_GT] = ACTIONS(2266), + [anon_sym_LT_AMP] = ACTIONS(2266), + [anon_sym_GT_AMP] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2677), + [anon_sym_LT_LT_DASH] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2266), [sym_comment] = ACTIONS(50), }, [1523] = { @@ -33304,10 +33338,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3383), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3381), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33315,30 +33349,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1524] = { - [sym_file_descriptor] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_PIPE_AMP] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2683), - [anon_sym_GT] = ACTIONS(2683), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_AMP_GT] = ACTIONS(2683), - [anon_sym_AMP_GT_GT] = ACTIONS(2274), - [anon_sym_LT_AMP] = ACTIONS(2274), - [anon_sym_GT_AMP] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2683), - [anon_sym_LT_LT_DASH] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_file_descriptor] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_PIPE_AMP] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2272), + [anon_sym_AMP_GT] = ACTIONS(2681), + [anon_sym_AMP_GT_GT] = ACTIONS(2272), + [anon_sym_LT_AMP] = ACTIONS(2272), + [anon_sym_GT_AMP] = ACTIONS(2272), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_LT_LT_DASH] = ACTIONS(2272), + [anon_sym_BQUOTE] = ACTIONS(2272), [sym_comment] = ACTIONS(50), }, [1525] = { - [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3383), [sym_comment] = ACTIONS(50), }, [1526] = { @@ -33347,10 +33381,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3385), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3383), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33358,26 +33392,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1527] = { - [sym_file_descriptor] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_PIPE_AMP] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_GT_GT] = ACTIONS(2280), - [anon_sym_AMP_GT] = ACTIONS(2687), - [anon_sym_AMP_GT_GT] = ACTIONS(2280), - [anon_sym_LT_AMP] = ACTIONS(2280), - [anon_sym_GT_AMP] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2687), - [anon_sym_LT_LT_DASH] = ACTIONS(2280), - [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_file_descriptor] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_PIPE_AMP] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2278), + [anon_sym_AMP_GT] = ACTIONS(2685), + [anon_sym_AMP_GT_GT] = ACTIONS(2278), + [anon_sym_LT_AMP] = ACTIONS(2278), + [anon_sym_GT_AMP] = ACTIONS(2278), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_LT_LT_DASH] = ACTIONS(2278), + [anon_sym_BQUOTE] = ACTIONS(2278), [sym_comment] = ACTIONS(50), }, [1528] = { @@ -33386,10 +33420,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3387), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3385), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33397,148 +33431,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1529] = { - [sym_file_descriptor] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_AMP_GT] = ACTIONS(2691), - [anon_sym_AMP_GT_GT] = ACTIONS(2286), - [anon_sym_LT_AMP] = ACTIONS(2286), - [anon_sym_GT_AMP] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_LT_LT_DASH] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_file_descriptor] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_PIPE_AMP] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_GT_GT] = ACTIONS(2284), + [anon_sym_AMP_GT] = ACTIONS(2689), + [anon_sym_AMP_GT_GT] = ACTIONS(2284), + [anon_sym_LT_AMP] = ACTIONS(2284), + [anon_sym_GT_AMP] = ACTIONS(2284), + [anon_sym_LT_LT] = ACTIONS(2689), + [anon_sym_LT_LT_DASH] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2284), [sym_comment] = ACTIONS(50), }, [1530] = { [aux_sym_concatenation_repeat1] = STATE(1530), - [sym__concat] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), + [sym__concat] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(729), [sym_comment] = ACTIONS(50), }, [1531] = { - [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3387), [sym_comment] = ACTIONS(50), }, [1532] = { - [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3389), [sym_comment] = ACTIONS(50), }, [1533] = { - [sym_file_descriptor] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [anon_sym_PIPE_AMP] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_PIPE_PIPE] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2748), - [anon_sym_GT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_AMP_GT] = ACTIONS(2748), - [anon_sym_AMP_GT_GT] = ACTIONS(2748), - [anon_sym_LT_AMP] = ACTIONS(2748), - [anon_sym_GT_AMP] = ACTIONS(2748), - [anon_sym_LT_LT] = ACTIONS(2748), - [anon_sym_LT_LT_DASH] = ACTIONS(2748), + [sym_file_descriptor] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_GT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_GT] = ACTIONS(2746), + [anon_sym_AMP_GT_GT] = ACTIONS(2746), + [anon_sym_LT_AMP] = ACTIONS(2746), + [anon_sym_GT_AMP] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_LT_LT_DASH] = ACTIONS(2746), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), }, [1534] = { - [sym_file_descriptor] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), - [anon_sym_PIPE_AMP] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_AMP_GT] = ACTIONS(2752), - [anon_sym_AMP_GT_GT] = ACTIONS(2752), - [anon_sym_LT_AMP] = ACTIONS(2752), - [anon_sym_GT_AMP] = ACTIONS(2752), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [sym_file_descriptor] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_GT] = ACTIONS(2750), + [anon_sym_AMP_GT_GT] = ACTIONS(2750), + [anon_sym_LT_AMP] = ACTIONS(2750), + [anon_sym_GT_AMP] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_LT_LT_DASH] = ACTIONS(2750), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), }, [1535] = { - [sym_file_descriptor] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2756), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [sym_file_descriptor] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_GT] = ACTIONS(2754), + [anon_sym_GT_GT] = ACTIONS(2754), + [anon_sym_AMP_GT] = ACTIONS(2754), + [anon_sym_AMP_GT_GT] = ACTIONS(2754), + [anon_sym_LT_AMP] = ACTIONS(2754), + [anon_sym_GT_AMP] = ACTIONS(2754), + [anon_sym_LT_LT] = ACTIONS(2754), + [anon_sym_LT_LT_DASH] = ACTIONS(2754), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1536] = { - [sym_file_descriptor] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), - [anon_sym_PIPE_AMP] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_PIPE_PIPE] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2760), - [anon_sym_GT] = ACTIONS(2760), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_AMP_GT] = ACTIONS(2760), - [anon_sym_AMP_GT_GT] = ACTIONS(2760), - [anon_sym_LT_AMP] = ACTIONS(2760), - [anon_sym_GT_AMP] = ACTIONS(2760), - [anon_sym_LT_LT] = ACTIONS(2760), - [anon_sym_LT_LT_DASH] = ACTIONS(2760), + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_GT] = ACTIONS(2758), + [anon_sym_AMP_GT_GT] = ACTIONS(2758), + [anon_sym_LT_AMP] = ACTIONS(2758), + [anon_sym_GT_AMP] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_LT_LT_DASH] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1537] = { - [anon_sym_RBRACK] = ACTIONS(3393), + [anon_sym_RBRACK] = ACTIONS(3391), [sym_comment] = ACTIONS(50), }, [1538] = { - [anon_sym_RBRACK] = ACTIONS(3395), + [anon_sym_RBRACK] = ACTIONS(3393), [sym_comment] = ACTIONS(50), }, [1539] = { - [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3395), [sym_comment] = ACTIONS(50), }, [1540] = { @@ -33547,10 +33581,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3397), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3395), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33558,13 +33592,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1541] = { - [sym__heredoc_middle] = ACTIONS(2268), - [sym__heredoc_end] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(2679), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2268), + [sym__heredoc_middle] = ACTIONS(2266), + [sym__heredoc_end] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2266), [sym_comment] = ACTIONS(50), }, [1542] = { @@ -33573,10 +33607,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3399), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3397), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33584,17 +33618,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1543] = { - [sym__heredoc_middle] = ACTIONS(2274), - [sym__heredoc_end] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2274), + [sym__heredoc_middle] = ACTIONS(2272), + [sym__heredoc_end] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2272), [sym_comment] = ACTIONS(50), }, [1544] = { - [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3399), [sym_comment] = ACTIONS(50), }, [1545] = { @@ -33603,10 +33637,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3401), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3399), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33614,13 +33648,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1546] = { - [sym__heredoc_middle] = ACTIONS(2280), - [sym__heredoc_end] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2280), + [sym__heredoc_middle] = ACTIONS(2278), + [sym__heredoc_end] = ACTIONS(2278), + [anon_sym_DOLLAR] = ACTIONS(2685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2278), [sym_comment] = ACTIONS(50), }, [1547] = { @@ -33629,10 +33663,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3403), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3401), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33640,213 +33674,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1548] = { - [sym__heredoc_middle] = ACTIONS(2286), - [sym__heredoc_end] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2691), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2286), + [sym__heredoc_middle] = ACTIONS(2284), + [sym__heredoc_end] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2284), [sym_comment] = ACTIONS(50), }, [1549] = { - [sym__concat] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_RBRACK] = ACTIONS(3087), [sym_comment] = ACTIONS(50), }, [1550] = { - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3093), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3091), [sym_comment] = ACTIONS(50), }, [1551] = { - [sym_file_descriptor] = ACTIONS(3089), - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [sym_variable_name] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_PIPE_AMP] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_GT] = ACTIONS(3091), - [anon_sym_AMP_GT_GT] = ACTIONS(3091), - [anon_sym_LT_AMP] = ACTIONS(3091), - [anon_sym_GT_AMP] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_raw_string] = ACTIONS(3091), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), - [anon_sym_BQUOTE] = ACTIONS(3091), - [anon_sym_LT_LPAREN] = ACTIONS(3091), - [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3087), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [sym_variable_name] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(3089), + [anon_sym_LT_AMP] = ACTIONS(3089), + [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_LT_LPAREN] = ACTIONS(3089), + [anon_sym_GT_LPAREN] = ACTIONS(3089), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), + [sym_identifier] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), }, [1552] = { - [sym_file_descriptor] = ACTIONS(3093), - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [sym_variable_name] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), + [sym_file_descriptor] = ACTIONS(3091), + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3093), + [anon_sym_LT_AMP] = ACTIONS(3093), + [anon_sym_GT_AMP] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3093), + [anon_sym_GT_LPAREN] = ACTIONS(3093), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), }, [1553] = { - [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3403), [sym_comment] = ACTIONS(50), }, [1554] = { - [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3405), [sym_comment] = ACTIONS(50), }, [1555] = { - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_raw_string] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2748), - [anon_sym_BQUOTE] = ACTIONS(2748), - [anon_sym_LT_LPAREN] = ACTIONS(2748), - [anon_sym_GT_LPAREN] = ACTIONS(2748), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [sym_raw_string] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2746), + [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_LT_LPAREN] = ACTIONS(2746), + [anon_sym_GT_LPAREN] = ACTIONS(2746), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), }, [1556] = { - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_raw_string] = ACTIONS(2752), - [anon_sym_DOLLAR] = ACTIONS(2752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2752), - [anon_sym_BQUOTE] = ACTIONS(2752), - [anon_sym_LT_LPAREN] = ACTIONS(2752), - [anon_sym_GT_LPAREN] = ACTIONS(2752), + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [sym_raw_string] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2750), + [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_LT_LPAREN] = ACTIONS(2750), + [anon_sym_GT_LPAREN] = ACTIONS(2750), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), }, [1557] = { - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_raw_string] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2756), - [anon_sym_BQUOTE] = ACTIONS(2756), - [anon_sym_LT_LPAREN] = ACTIONS(2756), - [anon_sym_GT_LPAREN] = ACTIONS(2756), + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [sym_raw_string] = ACTIONS(2754), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2754), + [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_LT_LPAREN] = ACTIONS(2754), + [anon_sym_GT_LPAREN] = ACTIONS(2754), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1558] = { - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_raw_string] = ACTIONS(2760), - [anon_sym_DOLLAR] = ACTIONS(2760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2760), - [anon_sym_BQUOTE] = ACTIONS(2760), - [anon_sym_LT_LPAREN] = ACTIONS(2760), - [anon_sym_GT_LPAREN] = ACTIONS(2760), + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [sym_raw_string] = ACTIONS(2758), + [anon_sym_DOLLAR] = ACTIONS(2758), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2758), + [anon_sym_BQUOTE] = ACTIONS(2758), + [anon_sym_LT_LPAREN] = ACTIONS(2758), + [anon_sym_GT_LPAREN] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1559] = { - [sym_word] = ACTIONS(3409), - [anon_sym_esac] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3409), - [sym_raw_string] = ACTIONS(3409), - [anon_sym_DOLLAR] = ACTIONS(3411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3409), - [anon_sym_BQUOTE] = ACTIONS(3409), - [anon_sym_LT_LPAREN] = ACTIONS(3409), - [anon_sym_GT_LPAREN] = ACTIONS(3409), + [sym_word] = ACTIONS(3407), + [anon_sym_esac] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_raw_string] = ACTIONS(3407), + [anon_sym_DOLLAR] = ACTIONS(3409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_LT_LPAREN] = ACTIONS(3407), + [anon_sym_GT_LPAREN] = ACTIONS(3407), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3411), }, [1560] = { - [sym_word] = ACTIONS(3415), - [anon_sym_esac] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_raw_string] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), - [anon_sym_BQUOTE] = ACTIONS(3415), - [anon_sym_LT_LPAREN] = ACTIONS(3415), - [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_word] = ACTIONS(3413), + [anon_sym_esac] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3417), }, [1561] = { - [anon_sym_RBRACK] = ACTIONS(3421), + [anon_sym_RBRACK] = ACTIONS(3419), [sym_comment] = ACTIONS(50), }, [1562] = { - [anon_sym_RBRACK] = ACTIONS(3423), + [anon_sym_RBRACK] = ACTIONS(3421), [sym_comment] = ACTIONS(50), }, [1563] = { - [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3423), [sym_comment] = ACTIONS(50), }, [1564] = { @@ -33855,10 +33889,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3425), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3423), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33866,20 +33900,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1565] = { - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_SEMI_SEMI] = ACTIONS(2270), - [anon_sym_PIPE_AMP] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_SEMI_SEMI] = ACTIONS(2268), + [anon_sym_PIPE_AMP] = ACTIONS(2268), + [anon_sym_AMP_AMP] = ACTIONS(2268), + [anon_sym_PIPE_PIPE] = ACTIONS(2268), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_LF] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_LF] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), }, [1566] = { [sym_string] = STATE(668), @@ -33887,10 +33921,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3427), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3425), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33898,23 +33932,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1567] = { - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_SEMI_SEMI] = ACTIONS(2276), - [anon_sym_PIPE_AMP] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_PIPE_PIPE] = ACTIONS(2276), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_SEMI_SEMI] = ACTIONS(2274), + [anon_sym_PIPE_AMP] = ACTIONS(2274), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LF] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_LF] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), }, [1568] = { - [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3427), [sym_comment] = ACTIONS(50), }, [1569] = { @@ -33923,10 +33957,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3429), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3427), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33934,20 +33968,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1570] = { - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_SEMI_SEMI] = ACTIONS(2282), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_SEMI_SEMI] = ACTIONS(2280), + [anon_sym_PIPE_AMP] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2280), + [anon_sym_PIPE_PIPE] = ACTIONS(2280), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LF] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_LF] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), }, [1571] = { [sym_string] = STATE(668), @@ -33955,10 +33989,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3431), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3429), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -33966,183 +34000,183 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1572] = { - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_SEMI_SEMI] = ACTIONS(2286), + [anon_sym_PIPE_AMP] = ACTIONS(2286), + [anon_sym_AMP_AMP] = ACTIONS(2286), + [anon_sym_PIPE_PIPE] = ACTIONS(2286), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_LF] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), }, [1573] = { - [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3431), [sym_comment] = ACTIONS(50), }, [1574] = { - [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3433), [sym_comment] = ACTIONS(50), }, [1575] = { - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [sym_variable_name] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), - [anon_sym_PIPE_AMP] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [sym_variable_name] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), }, [1576] = { - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [sym_variable_name] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), - [anon_sym_PIPE_AMP] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [sym_variable_name] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), }, [1577] = { - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [sym_variable_name] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1578] = { - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [sym_variable_name] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), - [anon_sym_PIPE_AMP] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1579] = { - [sym__concat] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_PIPE_PIPE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), + [sym__concat] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_PIPE_AMP] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), [sym_comment] = ACTIONS(50), }, [1580] = { - [anon_sym_AT] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3435), [sym_comment] = ACTIONS(50), }, [1581] = { - [sym__concat] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_PIPE_AMP] = ACTIONS(1635), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_PIPE_PIPE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), + [sym__concat] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_PIPE_AMP] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1633), + [anon_sym_PIPE_PIPE] = ACTIONS(1633), + [anon_sym_BQUOTE] = ACTIONS(1633), [sym_comment] = ACTIONS(50), }, [1582] = { - [anon_sym_AT] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3437), [sym_comment] = ACTIONS(50), }, [1583] = { - [anon_sym_RBRACK] = ACTIONS(3441), + [anon_sym_RBRACK] = ACTIONS(3439), [sym_comment] = ACTIONS(50), }, [1584] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3445), + [sym__concat] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3443), [sym_comment] = ACTIONS(50), }, [1585] = { - [sym__concat] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_PIPE_AMP] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_PIPE_PIPE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), + [sym__concat] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_PIPE_AMP] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1645), + [anon_sym_PIPE_PIPE] = ACTIONS(1645), + [anon_sym_BQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(50), }, [1586] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3449), + [sym__concat] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3447), [sym_comment] = ACTIONS(50), }, [1587] = { - [sym__concat] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3445), + [sym__concat] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3443), [sym_comment] = ACTIONS(50), }, [1588] = { - [anon_sym_RBRACK] = ACTIONS(3451), + [anon_sym_RBRACK] = ACTIONS(3449), [sym_comment] = ACTIONS(50), }, [1589] = { [aux_sym_concatenation_repeat1] = STATE(846), - [sym__concat] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3455), + [sym__concat] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3453), [sym_comment] = ACTIONS(50), }, [1590] = { [aux_sym_concatenation_repeat1] = STATE(849), - [sym__concat] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3459), + [sym__concat] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3457), [sym_comment] = ACTIONS(50), }, [1591] = { - [sym__concat] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3455), + [sym__concat] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3453), [sym_comment] = ACTIONS(50), }, [1592] = { - [anon_sym_RBRACK] = ACTIONS(3461), + [anon_sym_RBRACK] = ACTIONS(3459), [sym_comment] = ACTIONS(50), }, [1593] = { - [anon_sym_RBRACK] = ACTIONS(3463), + [anon_sym_RBRACK] = ACTIONS(3461), [sym_comment] = ACTIONS(50), }, [1594] = { - [anon_sym_RBRACE] = ACTIONS(3465), + [anon_sym_RBRACE] = ACTIONS(3463), [sym_comment] = ACTIONS(50), }, [1595] = { @@ -34151,10 +34185,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3465), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3463), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34162,20 +34196,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1596] = { - [sym_word] = ACTIONS(2268), - [sym__concat] = ACTIONS(2268), - [sym_variable_name] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_PIPE_AMP] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_BQUOTE] = ACTIONS(2268), + [sym_word] = ACTIONS(2266), + [sym__concat] = ACTIONS(2266), + [sym_variable_name] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2266), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), }, [1597] = { [sym_string] = STATE(668), @@ -34183,10 +34217,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3467), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3465), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34194,23 +34228,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1598] = { - [sym_word] = ACTIONS(2274), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_PIPE_AMP] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2274), + [sym_word] = ACTIONS(2272), + [sym__concat] = ACTIONS(2272), + [sym_variable_name] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_PIPE_AMP] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_BQUOTE] = ACTIONS(2272), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2681), }, [1599] = { - [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_RBRACE] = ACTIONS(3467), [sym_comment] = ACTIONS(50), }, [1600] = { @@ -34219,10 +34253,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3469), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3467), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34230,20 +34264,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1601] = { - [sym_word] = ACTIONS(2280), - [sym__concat] = ACTIONS(2280), - [sym_variable_name] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_PIPE_AMP] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_word] = ACTIONS(2278), + [sym__concat] = ACTIONS(2278), + [sym_variable_name] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_PIPE_AMP] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_BQUOTE] = ACTIONS(2278), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), }, [1602] = { [sym_string] = STATE(668), @@ -34251,10 +34285,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3471), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3469), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34262,329 +34296,329 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1603] = { - [sym_word] = ACTIONS(2286), - [sym__concat] = ACTIONS(2286), - [sym_variable_name] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), + [sym_word] = ACTIONS(2284), + [sym__concat] = ACTIONS(2284), + [sym_variable_name] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_PIPE_AMP] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2284), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2689), }, [1604] = { - [anon_sym_RBRACE] = ACTIONS(3473), + [anon_sym_RBRACE] = ACTIONS(3471), [sym_comment] = ACTIONS(50), }, [1605] = { - [anon_sym_RBRACE] = ACTIONS(3475), + [anon_sym_RBRACE] = ACTIONS(3473), [sym_comment] = ACTIONS(50), }, [1606] = { - [sym_file_descriptor] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_PIPE_AMP] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(2746), - [anon_sym_AMP_GT] = ACTIONS(3049), - [anon_sym_AMP_GT_GT] = ACTIONS(2746), - [anon_sym_LT_AMP] = ACTIONS(2746), - [anon_sym_GT_AMP] = ACTIONS(2746), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_LT_LT_DASH] = ACTIONS(2746), - [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_file_descriptor] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2744), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2744), + [anon_sym_LT_AMP] = ACTIONS(2744), + [anon_sym_GT_AMP] = ACTIONS(2744), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_LT_LT_DASH] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), [sym_comment] = ACTIONS(50), }, [1607] = { - [sym_file_descriptor] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(2750), - [anon_sym_AMP_GT] = ACTIONS(3051), - [anon_sym_AMP_GT_GT] = ACTIONS(2750), - [anon_sym_LT_AMP] = ACTIONS(2750), - [anon_sym_GT_AMP] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_LT_LT_DASH] = ACTIONS(2750), - [anon_sym_BQUOTE] = ACTIONS(2750), - [sym_comment] = ACTIONS(50), - }, - [1608] = { - [sym_file_descriptor] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(3053), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_LT_LT_DASH] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [sym_comment] = ACTIONS(50), - }, - [1609] = { - [sym_file_descriptor] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_GT] = ACTIONS(3055), - [anon_sym_AMP_GT_GT] = ACTIONS(2758), - [anon_sym_LT_AMP] = ACTIONS(2758), - [anon_sym_GT_AMP] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_LT_LT_DASH] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [sym_comment] = ACTIONS(50), - }, - [1610] = { - [sym_file_descriptor] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_PIPE_AMP] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3091), - [anon_sym_GT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_GT] = ACTIONS(3091), - [anon_sym_AMP_GT_GT] = ACTIONS(3091), - [anon_sym_LT_AMP] = ACTIONS(3091), - [anon_sym_GT_AMP] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_LT_LT_DASH] = ACTIONS(3091), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - }, - [1611] = { - [sym_file_descriptor] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(3095), - [anon_sym_LT_AMP] = ACTIONS(3095), - [anon_sym_GT_AMP] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_LT_LT_DASH] = ACTIONS(3095), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - }, - [1612] = { - [anon_sym_RBRACE] = ACTIONS(3477), - [sym_comment] = ACTIONS(50), - }, - [1613] = { - [anon_sym_RBRACE] = ACTIONS(3479), - [sym_comment] = ACTIONS(50), - }, - [1614] = { - [sym__heredoc_middle] = ACTIONS(2746), - [sym__heredoc_end] = ACTIONS(2746), - [anon_sym_DOLLAR] = ACTIONS(3049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2746), - [sym_comment] = ACTIONS(50), - }, - [1615] = { - [sym__heredoc_middle] = ACTIONS(2750), - [sym__heredoc_end] = ACTIONS(2750), - [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2750), - [sym_comment] = ACTIONS(50), - }, - [1616] = { - [sym__heredoc_middle] = ACTIONS(2754), - [sym__heredoc_end] = ACTIONS(2754), - [anon_sym_DOLLAR] = ACTIONS(3053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2754), - [sym_comment] = ACTIONS(50), - }, - [1617] = { - [sym__heredoc_middle] = ACTIONS(2758), - [sym__heredoc_end] = ACTIONS(2758), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2758), - [sym_comment] = ACTIONS(50), - }, - [1618] = { - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_raw_string] = ACTIONS(3091), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), - [anon_sym_BQUOTE] = ACTIONS(3091), - [anon_sym_LT_LPAREN] = ACTIONS(3091), - [anon_sym_GT_LPAREN] = ACTIONS(3091), - [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - }, - [1619] = { - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3095), - [anon_sym_BQUOTE] = ACTIONS(3095), - [anon_sym_LT_LPAREN] = ACTIONS(3095), - [anon_sym_GT_LPAREN] = ACTIONS(3095), - [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - }, - [1620] = { - [anon_sym_RBRACE] = ACTIONS(3481), - [sym_comment] = ACTIONS(50), - }, - [1621] = { - [anon_sym_RBRACE] = ACTIONS(3483), - [sym_comment] = ACTIONS(50), - }, - [1622] = { - [sym__concat] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2748), + [sym_file_descriptor] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(3049), [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_SEMI_SEMI] = ACTIONS(2748), [anon_sym_PIPE_AMP] = ACTIONS(2748), [anon_sym_AMP_AMP] = ACTIONS(2748), [anon_sym_PIPE_PIPE] = ACTIONS(2748), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_LF] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_GT] = ACTIONS(3049), + [anon_sym_AMP_GT_GT] = ACTIONS(2748), + [anon_sym_LT_AMP] = ACTIONS(2748), + [anon_sym_GT_AMP] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_LT_LT_DASH] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), + [sym_comment] = ACTIONS(50), }, - [1623] = { - [sym__concat] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2752), + [1608] = { + [sym_file_descriptor] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(3051), [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_SEMI_SEMI] = ACTIONS(2752), [anon_sym_PIPE_AMP] = ACTIONS(2752), [anon_sym_AMP_AMP] = ACTIONS(2752), [anon_sym_PIPE_PIPE] = ACTIONS(2752), - [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_LF] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2752), + [anon_sym_LT_AMP] = ACTIONS(2752), + [anon_sym_GT_AMP] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), + [sym_comment] = ACTIONS(50), }, - [1624] = { - [sym__concat] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2756), + [1609] = { + [sym_file_descriptor] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(3053), [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), [anon_sym_PIPE_AMP] = ACTIONS(2756), [anon_sym_AMP_AMP] = ACTIONS(2756), [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2756), + [anon_sym_LT_AMP] = ACTIONS(2756), + [anon_sym_GT_AMP] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), + [sym_comment] = ACTIONS(50), + }, + [1610] = { + [sym_file_descriptor] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_GT] = ACTIONS(3089), + [anon_sym_AMP_GT_GT] = ACTIONS(3089), + [anon_sym_LT_AMP] = ACTIONS(3089), + [anon_sym_GT_AMP] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_LT_LT_DASH] = ACTIONS(3089), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), + }, + [1611] = { + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3093), + [anon_sym_LT_AMP] = ACTIONS(3093), + [anon_sym_GT_AMP] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3093), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + }, + [1612] = { + [anon_sym_RBRACE] = ACTIONS(3475), + [sym_comment] = ACTIONS(50), + }, + [1613] = { + [anon_sym_RBRACE] = ACTIONS(3477), + [sym_comment] = ACTIONS(50), + }, + [1614] = { + [sym__heredoc_middle] = ACTIONS(2744), + [sym__heredoc_end] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2744), + [sym_comment] = ACTIONS(50), + }, + [1615] = { + [sym__heredoc_middle] = ACTIONS(2748), + [sym__heredoc_end] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2748), + [sym_comment] = ACTIONS(50), + }, + [1616] = { + [sym__heredoc_middle] = ACTIONS(2752), + [sym__heredoc_end] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2752), + [sym_comment] = ACTIONS(50), + }, + [1617] = { + [sym__heredoc_middle] = ACTIONS(2756), + [sym__heredoc_end] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2756), + [sym_comment] = ACTIONS(50), + }, + [1618] = { + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_DQUOTE] = ACTIONS(3089), + [sym_raw_string] = ACTIONS(3089), + [anon_sym_DOLLAR] = ACTIONS(3089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3089), + [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_LT_LPAREN] = ACTIONS(3089), + [anon_sym_GT_LPAREN] = ACTIONS(3089), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), + }, + [1619] = { + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3093), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [anon_sym_LT_LPAREN] = ACTIONS(3093), + [anon_sym_GT_LPAREN] = ACTIONS(3093), + [sym_comment] = ACTIONS(64), + [sym_identifier] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + }, + [1620] = { + [anon_sym_RBRACE] = ACTIONS(3479), + [sym_comment] = ACTIONS(50), + }, + [1621] = { + [anon_sym_RBRACE] = ACTIONS(3481), + [sym_comment] = ACTIONS(50), + }, + [1622] = { + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2746), + [anon_sym_PIPE_AMP] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_LF] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + }, + [1623] = { + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + }, + [1624] = { + [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_SEMI_SEMI] = ACTIONS(2754), + [anon_sym_PIPE_AMP] = ACTIONS(2754), + [anon_sym_AMP_AMP] = ACTIONS(2754), + [anon_sym_PIPE_PIPE] = ACTIONS(2754), + [sym_comment] = ACTIONS(64), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_LF] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), }, [1625] = { - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_SEMI_SEMI] = ACTIONS(2760), - [anon_sym_PIPE_AMP] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_PIPE_PIPE] = ACTIONS(2760), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_RPAREN] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_PIPE_AMP] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), }, [1626] = { - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [sym_variable_name] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_PIPE_AMP] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [sym_variable_name] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), + [sym_identifier] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), }, [1627] = { - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [sym_variable_name] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), [sym_comment] = ACTIONS(64), - [sym_identifier] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), }, [1628] = { - [anon_sym_RBRACK] = ACTIONS(3485), + [anon_sym_RBRACK] = ACTIONS(3483), [sym_comment] = ACTIONS(50), }, [1629] = { - [anon_sym_RBRACK] = ACTIONS(3487), + [anon_sym_RBRACK] = ACTIONS(3485), [sym_comment] = ACTIONS(50), }, [1630] = { - [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_RBRACE] = ACTIONS(3487), [sym_comment] = ACTIONS(50), }, [1631] = { @@ -34593,10 +34627,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3489), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3487), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34604,16 +34638,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1632] = { - [sym__concat] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_PIPE_AMP] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_BQUOTE] = ACTIONS(2268), + [sym__concat] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2266), [sym_comment] = ACTIONS(50), }, [1633] = { @@ -34622,10 +34656,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3491), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3489), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34633,20 +34667,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1634] = { - [sym__concat] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_PIPE_AMP] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_BQUOTE] = ACTIONS(2274), + [sym__concat] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_PIPE_AMP] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2272), + [anon_sym_PIPE_PIPE] = ACTIONS(2272), + [anon_sym_BQUOTE] = ACTIONS(2272), [sym_comment] = ACTIONS(50), }, [1635] = { - [anon_sym_RBRACE] = ACTIONS(3493), + [anon_sym_RBRACE] = ACTIONS(3491), [sym_comment] = ACTIONS(50), }, [1636] = { @@ -34655,10 +34689,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3493), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3491), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34666,16 +34700,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1637] = { - [sym__concat] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2687), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_PIPE_AMP] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_BQUOTE] = ACTIONS(2280), + [sym__concat] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_PIPE_AMP] = ACTIONS(2278), + [anon_sym_AMP_AMP] = ACTIONS(2278), + [anon_sym_PIPE_PIPE] = ACTIONS(2278), + [anon_sym_BQUOTE] = ACTIONS(2278), [sym_comment] = ACTIONS(50), }, [1638] = { @@ -34684,10 +34718,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(668), [sym_command_substitution] = STATE(668), [sym_process_substitution] = STATE(668), - [sym_word] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(3495), + [sym_word] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(3493), [anon_sym_DQUOTE] = ACTIONS(288), - [sym_raw_string] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1304), [anon_sym_DOLLAR] = ACTIONS(290), [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), @@ -34695,250 +34729,250 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(298), [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), }, [1639] = { - [sym__concat] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), + [sym__concat] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_PIPE_AMP] = ACTIONS(2284), + [anon_sym_AMP_AMP] = ACTIONS(2284), + [anon_sym_PIPE_PIPE] = ACTIONS(2284), + [anon_sym_BQUOTE] = ACTIONS(2284), [sym_comment] = ACTIONS(50), }, [1640] = { - [anon_sym_RBRACE] = ACTIONS(3497), + [anon_sym_RBRACE] = ACTIONS(3495), [sym_comment] = ACTIONS(50), }, [1641] = { - [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_RBRACE] = ACTIONS(3497), [sym_comment] = ACTIONS(50), }, [1642] = { - [sym_word] = ACTIONS(2746), - [sym__concat] = ACTIONS(2746), - [sym_variable_name] = ACTIONS(2746), + [sym_word] = ACTIONS(2744), + [sym__concat] = ACTIONS(2744), + [sym_variable_name] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3047), + }, + [1643] = { + [sym_word] = ACTIONS(2748), + [sym__concat] = ACTIONS(2748), + [sym_variable_name] = ACTIONS(2748), [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_PIPE_AMP] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), - [anon_sym_BQUOTE] = ACTIONS(2746), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3049), }, - [1643] = { - [sym_word] = ACTIONS(2750), - [sym__concat] = ACTIONS(2750), - [sym_variable_name] = ACTIONS(2750), + [1644] = { + [sym_word] = ACTIONS(2752), + [sym__concat] = ACTIONS(2752), + [sym_variable_name] = ACTIONS(2752), [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_BQUOTE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3051), }, - [1644] = { - [sym_word] = ACTIONS(2754), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(2754), + [1645] = { + [sym_word] = ACTIONS(2756), + [sym__concat] = ACTIONS(2756), + [sym_variable_name] = ACTIONS(2756), [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3053), }, - [1645] = { - [sym_word] = ACTIONS(2758), - [sym__concat] = ACTIONS(2758), - [sym_variable_name] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3055), - }, [1646] = { - [sym_file_descriptor] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3300), - [anon_sym_GT] = ACTIONS(3300), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_GT] = ACTIONS(3300), - [anon_sym_AMP_GT_GT] = ACTIONS(3089), - [anon_sym_LT_AMP] = ACTIONS(3089), - [anon_sym_GT_AMP] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3300), - [anon_sym_LT_LT_DASH] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(3089), + [sym_file_descriptor] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_PIPE_AMP] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_AMP_GT] = ACTIONS(3298), + [anon_sym_AMP_GT_GT] = ACTIONS(3087), + [anon_sym_LT_AMP] = ACTIONS(3087), + [anon_sym_GT_AMP] = ACTIONS(3087), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_LT_LT_DASH] = ACTIONS(3087), + [anon_sym_BQUOTE] = ACTIONS(3087), [sym_comment] = ACTIONS(50), }, [1647] = { - [sym_file_descriptor] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_PIPE_AMP] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_GT] = ACTIONS(3302), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_GT] = ACTIONS(3302), - [anon_sym_AMP_GT_GT] = ACTIONS(3093), - [anon_sym_LT_AMP] = ACTIONS(3093), - [anon_sym_GT_AMP] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3302), - [anon_sym_LT_LT_DASH] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_comment] = ACTIONS(50), - }, - [1648] = { - [sym__heredoc_middle] = ACTIONS(3089), - [sym__heredoc_end] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3089), - [sym_comment] = ACTIONS(50), - }, - [1649] = { - [sym__heredoc_middle] = ACTIONS(3093), - [sym__heredoc_end] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), - [sym_comment] = ACTIONS(50), - }, - [1650] = { - [sym__concat] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3300), [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), [anon_sym_PIPE_AMP] = ACTIONS(3091), [anon_sym_AMP_AMP] = ACTIONS(3091), [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3300), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [sym_comment] = ACTIONS(50), + }, + [1648] = { + [sym__heredoc_middle] = ACTIONS(3087), + [sym__heredoc_end] = ACTIONS(3087), + [anon_sym_DOLLAR] = ACTIONS(3298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3087), + [sym_comment] = ACTIONS(50), + }, + [1649] = { + [sym__heredoc_middle] = ACTIONS(3091), + [sym__heredoc_end] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [sym_comment] = ACTIONS(50), + }, + [1650] = { + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_SEMI_SEMI] = ACTIONS(3089), + [anon_sym_PIPE_AMP] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_LF] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), }, [1651] = { - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3093), + [anon_sym_PIPE_AMP] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), [sym_comment] = ACTIONS(64), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_LF] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), }, [1652] = { - [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_RBRACE] = ACTIONS(3499), [sym_comment] = ACTIONS(50), }, [1653] = { - [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(3501), [sym_comment] = ACTIONS(50), }, [1654] = { - [sym__concat] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_PIPE_AMP] = ACTIONS(2746), - [anon_sym_AMP_AMP] = ACTIONS(2746), - [anon_sym_PIPE_PIPE] = ACTIONS(2746), - [anon_sym_BQUOTE] = ACTIONS(2746), + [sym__concat] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(2744), + [anon_sym_AMP_AMP] = ACTIONS(2744), + [anon_sym_PIPE_PIPE] = ACTIONS(2744), + [anon_sym_BQUOTE] = ACTIONS(2744), [sym_comment] = ACTIONS(50), }, [1655] = { - [sym__concat] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_BQUOTE] = ACTIONS(2750), + [sym__concat] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_PIPE_AMP] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_BQUOTE] = ACTIONS(2748), [sym_comment] = ACTIONS(50), }, [1656] = { - [sym__concat] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), + [sym__concat] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_PIPE_AMP] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_BQUOTE] = ACTIONS(2752), [sym_comment] = ACTIONS(50), }, [1657] = { - [sym__concat] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_PIPE_AMP] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_BQUOTE] = ACTIONS(2758), + [sym__concat] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_PIPE_AMP] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_BQUOTE] = ACTIONS(2756), [sym_comment] = ACTIONS(50), }, [1658] = { - [sym_word] = ACTIONS(3089), - [sym__concat] = ACTIONS(3089), - [sym_variable_name] = ACTIONS(3089), + [sym_word] = ACTIONS(3087), + [sym__concat] = ACTIONS(3087), + [sym_variable_name] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_PIPE_AMP] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_BQUOTE] = ACTIONS(3087), + [sym_comment] = ACTIONS(50), + [sym_identifier] = ACTIONS(3298), + }, + [1659] = { + [sym_word] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(3089), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), [sym_comment] = ACTIONS(50), [sym_identifier] = ACTIONS(3300), }, - [1659] = { - [sym_word] = ACTIONS(3093), - [sym__concat] = ACTIONS(3093), - [sym_variable_name] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_PIPE_AMP] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3093), - [sym_comment] = ACTIONS(50), - [sym_identifier] = ACTIONS(3302), - }, [1660] = { - [sym__concat] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3300), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_BQUOTE] = ACTIONS(3089), + [sym__concat] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_PIPE_AMP] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_BQUOTE] = ACTIONS(3087), [sym_comment] = ACTIONS(50), }, [1661] = { - [sym__concat] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3093), - [anon_sym_PIPE_AMP] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_BQUOTE] = ACTIONS(3093), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3300), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), [sym_comment] = ACTIONS(50), }, }; @@ -35017,7 +35051,7 @@ static TSParseActionEntry ts_parse_actions[] = { [140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), [142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(89), [144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), - [146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(92), + [146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), [148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), [150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), [152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(95), @@ -35170,1472 +35204,1471 @@ static TSParseActionEntry ts_parse_actions[] = { [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), [448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), [450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), - [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), - [462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), - [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), - [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(292), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), - [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), - [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), - [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [520] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), - [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), - [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(324), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), - [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(327), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(342), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), - [558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(343), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(344), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), - [568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), - [578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), - [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), - [588] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), - [590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), - [592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), - [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), - [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), - [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), - [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(375), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), - [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(378), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), - [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [646] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [654] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [657] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [660] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [663] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [666] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [672] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [675] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [702] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), - [707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(156), - [715] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [718] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), - [729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), - [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [733] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), - [737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), - [739] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(33), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), - [750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(399), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(416), - [772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), - [776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), - [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), - [806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(448), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(450), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(459), - [818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(460), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), - [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(463), - [824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(468), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), - [840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(474), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), - [858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(484), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), - [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(493), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), - [882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(490), - [884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(504), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), - [900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), - [908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(509), - [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), - [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), - [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), - [924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), - [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [931] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), - [934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66), - [937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67), - [940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(68), - [943] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), - [946] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), - [949] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(71), - [952] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), - [955] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(520), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), - [978] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(77), - [981] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(78), - [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [986] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(79), - [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(527), - [993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(529), - [995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(530), - [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), - [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), - [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), - [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), - [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), - [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), - [1015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), - [1017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), - [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), - [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(544), - [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), - [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [1037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1041] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [1043] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(92), - [1046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(93), - [1049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(94), - [1052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(95), - [1055] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(96), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(568), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(573), - [1110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(574), - [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(575), - [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(576), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(580), - [1122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(581), - [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [1136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(588), - [1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), - [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(596), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), - [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), - [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), - [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), - [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), - [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), - [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), - [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), - [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), - [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), - [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(632), - [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), - [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(641), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), - [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [1230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(645), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), - [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(647), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(651), - [1242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [1244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1260] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), - [1263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1265] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), - [1268] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), - [1271] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), - [1274] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), - [1277] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), - [1280] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), - [1283] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(20), - [1286] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(150), - [1289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1291] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(146), - [1294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1296] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(148), - [1299] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(149), - [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), - [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), - [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [1312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(671), - [1314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), - [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), - [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), - [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(676), - [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), - [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), - [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 5), - [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), - [1342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(689), - [1350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(690), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), - [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), - [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), - [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), - [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), - [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), - [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), - [1374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(702), - [1376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(705), - [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(704), - [1382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(708), - [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(717), - [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), - [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), - [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), - [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), - [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437), - [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), - [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(439), - [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), - [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(719), - [1408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), - [1410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [1414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(727), - [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), - [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(728), - [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), - [1428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(734), - [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735), - [1432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), - [1434] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(191), - [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), - [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), - [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(753), - [1461] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(755), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), - [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), - [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), - [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), - [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), - [1489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), - [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), - [1495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(773), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775), - [1501] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(218), - [1504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), - [1510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [1513] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [1516] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(230), - [1519] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(227), - [1522] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(229), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), - [1531] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(238), - [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), - [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), - [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), - [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), - [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), - [1568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), - [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(800), - [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), - [1574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(803), - [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802), - [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), - [1582] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(263), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), - [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(822), - [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), - [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), - [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(835), - [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), - [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), - [1631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [1649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(300), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), - [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(862), - [1682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(866), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [1686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(868), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), - [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), - [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [1710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), - [1712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(877), - [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), - [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), - [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(882), - [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), - [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), - [1736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(887), - [1738] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(316), - [1741] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(317), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1748] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(318), - [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), - [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), - [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), - [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), - [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), - [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(895), - [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(899), - [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), - [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), - [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(907), - [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(910), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(909), - [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), - [1795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [1803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(341), - [1806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1808] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(116), - [1811] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(117), - [1814] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(118), - [1817] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), - [1820] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(120), - [1823] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121), - [1826] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(344), - [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1833] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(340), - [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1840] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(342), - [1843] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(342), - [1846] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(343), - [1849] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(343), - [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), - [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(929), - [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(931), - [1864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(354), - [1867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(934), - [1871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(362), - [1874] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(364), - [1877] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(361), - [1880] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), - [1883] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), - [1886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), - [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), - [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), - [1896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), - [1898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(943), - [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), - [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [1930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(954), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [1936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(957), - [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1942] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(393), - [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), - [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [1965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), - [1967] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(412), - [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1974] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(414), - [1977] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(416), - [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), - [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), - [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), - [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), - [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), - [2008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), - [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(999), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [2030] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(433), - [2033] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(434), - [2036] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(433), - [2039] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(435), - [2042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(436), - [2045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(437), - [2048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(438), - [2051] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(439), - [2054] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(440), - [2057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [2061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1004), - [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [2067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), - [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2073] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(449), - [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), - [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1015), - [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), - [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), - [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), - [2120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1034), - [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), - [2132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1038), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), - [2136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1044), - [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1055), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), - [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), - [2152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), - [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), - [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), - [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1074), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), - [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1078), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), - [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), - [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1085), - [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), - [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), - [2270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [2276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [2288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), - [2294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1121), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1123), - [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [2312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), - [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), - [2316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1131), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1134), - [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), - [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), - [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), - [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1137), - [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), - [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), - [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), - [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1142), - [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), - [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), - [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), - [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), - [2356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1149), - [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), - [2360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1152), - [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1151), - [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), - [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1155), - [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), - [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), - [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), - [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), - [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), - [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), - [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), - [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), - [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), - [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), - [2400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), - [2402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1181), - [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), - [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1185), - [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), - [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), - [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1194), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), - [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1196), - [2440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), - [2442] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(643), - [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), - [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), - [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), - [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), - [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1207), - [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), - [2467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1213), - [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1217), - [2477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), - [2483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), - [2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2489] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(660), - [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [2494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(662), - [2497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(663), - [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), - [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), - [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), - [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), - [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), - [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), - [2548] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(700), - [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), - [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), - [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), - [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), - [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1252), - [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1256), - [2573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [2577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1261), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), - [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), - [2593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2595] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(733), - [2598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(168), - [2603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169), - [2606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170), - [2609] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171), - [2612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(172), - [2615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(173), - [2618] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(735), - [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1271), - [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), - [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), - [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), - [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), - [2639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280), - [2645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1282), - [2647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), - [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), - [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), - [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), - [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1290), - [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), - [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), - [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), - [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), - [2677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), - [2681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [2683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), - [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [2693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(796), - [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), - [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), - [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), - [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), - [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), - [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), - [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), - [2710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1311), - [2712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), - [2714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), - [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1315), - [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), - [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), - [2722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), - [2726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), - [2728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), - [2732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), - [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), - [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), - [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), - [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), - [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [2752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), - [2760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), - [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), - [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1334), - [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1336), - [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), - [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), - [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), - [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), - [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), - [2798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1344), - [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), - [2802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1347), - [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1346), - [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [2808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1350), - [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1360), - [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [2820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), - [2822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), - [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), - [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), - [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1368), - [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), - [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), - [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1371), - [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), - [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), - [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), - [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), - [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), - [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), - [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), - [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), - [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), - [2860] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(905), - [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), - [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), - [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), - [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), - [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), - [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1387), - [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), - [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), - [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1391), - [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1394), - [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), - [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), - [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), - [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), - [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), - [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), - [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), - [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), - [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), - [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), - [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1417), - [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), - [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1421), - [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), - [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), - [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), - [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), - [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), - [2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), - [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), - [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), - [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), - [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), - [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), - [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), - [2971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), - [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), - [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [2979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [2981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), - [2983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [2985] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [2987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [2989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [2993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [2997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [2999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [3001] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1008), - [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [3008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [3012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), - [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), - [3018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), - [3020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1036), - [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), - [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), - [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), - [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), - [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), - [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), - [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), - [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), - [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), - [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), - [3049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), - [3051] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [3055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), - [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), - [3059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), - [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), - [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1473), - [3065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), - [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), - [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), - [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), - [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), - [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), - [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), - [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), - [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), - [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), - [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), - [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), - [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), - [3091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), - [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [3095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), - [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), - [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), - [3107] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1487), - [3113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [3115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [3117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1488), - [3119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), - [3121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), - [3123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), - [3125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1490), - [3127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), - [3129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1493), - [3131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), - [3133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), - [3135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), - [3137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), - [3139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498), - [3141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), - [3143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), - [3145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1500), - [3147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), - [3151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1145), - [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), - [3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), - [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), - [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), - [3162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), - [3164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), - [3166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), - [3168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1510), - [3170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), - [3172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), - [3174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1514), - [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), - [3178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), - [3184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), - [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), - [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), - [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), - [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), - [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), - [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), - [3204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), - [3206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), - [3208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), - [3210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), - [3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), - [3214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), - [3216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [3218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), - [3220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), - [3222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [3224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), - [3226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), - [3228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), - [3230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [3232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), - [3234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [3236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), - [3238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), - [3240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), - [3242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), - [3244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), - [3246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), - [3248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), - [3250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), - [3252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), - [3254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), - [3256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), - [3258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), - [3260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [3262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [3264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [3266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [3268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [3270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [3272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [3274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), - [3276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), - [3278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [3280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), - [3282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [3284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), - [3286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), - [3288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [3290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [3292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), - [3294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), - [3296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), - [3298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), - [3300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), - [3302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), - [3304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), - [3306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [3308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), - [3310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), - [3312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), - [3314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), - [3316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [3318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [3320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), - [3322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [3324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), - [3326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), - [3328] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1342), - [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), - [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), - [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), - [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), - [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), - [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1586), - [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), - [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), - [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1590), - [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), - [3355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), - [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), - [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), - [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), - [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), - [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), - [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), - [3369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), - [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), - [3373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), - [3375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), - [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), - [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1605), - [3381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), - [3383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), - [3385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), - [3387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), - [3389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), - [3391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), - [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), - [3395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1613), - [3397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1614), - [3399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), - [3401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), - [3403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), - [3405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), - [3407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), - [3409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [3413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [3417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [3419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [3421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), - [3423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), - [3425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1622), - [3427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), - [3429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), - [3431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), - [3433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [3435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), - [3437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), - [3439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), - [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), - [3443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), - [3445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), - [3447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), - [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), - [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), - [3453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1636), - [3455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), - [3457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), - [3459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), - [3461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), - [3463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), - [3465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), - [3467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), - [3469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), - [3471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), - [3473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), - [3475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), - [3477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), - [3479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), - [3481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), - [3483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), - [3485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), - [3487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), - [3489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), - [3491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), - [3493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), - [3495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), - [3497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), - [3499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), - [3501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), - [3503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), + [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), + [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), + [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), + [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), + [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), + [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), + [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), + [474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), + [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(292), + [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(299), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), + [500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), + [502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(304), + [504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), + [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), + [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), + [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), + [524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(324), + [526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(326), + [530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(327), + [532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(342), + [554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(342), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(343), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), + [560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(344), + [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(349), + [564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(352), + [566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), + [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), + [578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), + [586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), + [588] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), + [590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), + [592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), + [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), + [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), + [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), + [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(375), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(378), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [644] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [649] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [652] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [655] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [658] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [661] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [664] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [667] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [670] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [673] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [676] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [679] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [682] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [685] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [688] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [691] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [694] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [697] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [700] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(156), + [713] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [716] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), + [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), + [735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), + [737] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(33), + [740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), + [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(399), + [750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), + [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), + [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(415), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(416), + [770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), + [776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), + [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), + [780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), + [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), + [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), + [802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), + [804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(448), + [808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), + [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(450), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(459), + [816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(460), + [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(463), + [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), + [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(468), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), + [844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(474), + [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), + [856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(484), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), + [868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(493), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), + [880] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(490), + [882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(499), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(504), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), + [898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(509), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), + [922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [924] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), + [927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), + [932] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66), + [935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67), + [938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(68), + [941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), + [944] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), + [947] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(71), + [950] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), + [953] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(520), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), + [976] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(77), + [979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(78), + [982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [984] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(79), + [987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), + [989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(527), + [991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(529), + [993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(530), + [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), + [1003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [1005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), + [1007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), + [1009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), + [1011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), + [1013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), + [1015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), + [1017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), + [1019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), + [1021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), + [1023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(544), + [1025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [1029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), + [1031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), + [1033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [1041] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(92), + [1044] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(93), + [1047] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(94), + [1050] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(95), + [1053] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(96), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(568), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), + [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(573), + [1108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(574), + [1110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(575), + [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(576), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(580), + [1120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(581), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), + [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [1134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(588), + [1136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(589), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(596), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), + [1198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), + [1200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), + [1202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), + [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(632), + [1206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), + [1208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), + [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(641), + [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(643), + [1226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(645), + [1230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), + [1232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(648), + [1234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(647), + [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(651), + [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(661), + [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), + [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1258] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), + [1261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1263] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), + [1266] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), + [1269] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), + [1272] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), + [1275] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), + [1278] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), + [1281] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(20), + [1284] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(150), + [1287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1289] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(146), + [1292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1294] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(148), + [1297] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(149), + [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), + [1302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), + [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(669), + [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [1310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(671), + [1312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), + [1314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), + [1316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), + [1318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(676), + [1320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(676), + [1322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(677), + [1324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), + [1328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), + [1330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), + [1332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 5), + [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), + [1338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), + [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(689), + [1348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(690), + [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(693), + [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), + [1358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), + [1360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), + [1362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [1364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), + [1366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [1368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), + [1370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(702), + [1374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), + [1376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(705), + [1378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(704), + [1380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(708), + [1384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(717), + [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), + [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), + [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), + [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(437), + [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), + [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(439), + [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), + [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(719), + [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), + [1408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [1412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(727), + [1414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), + [1418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(728), + [1420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [1422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [1424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(734), + [1428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(735), + [1430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), + [1432] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(191), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(747), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(751), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(753), + [1459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(755), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(764), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), + [1487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), + [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(772), + [1493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(773), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(775), + [1499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(218), + [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), + [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), + [1508] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [1511] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), + [1514] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(230), + [1517] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(227), + [1520] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(229), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), + [1529] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(238), + [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), + [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), + [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), + [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), + [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), + [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), + [1550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), + [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), + [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(794), + [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), + [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), + [1568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(800), + [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [1572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(803), + [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(802), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), + [1578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(806), + [1580] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(263), + [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), + [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), + [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(822), + [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), + [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(828), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), + [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(832), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(835), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), + [1629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [1647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1663] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(300), + [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), + [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(860), + [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(862), + [1680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(866), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(868), + [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), + [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), + [1698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), + [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(876), + [1710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(877), + [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [1720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1724] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(882), + [1726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [1728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), + [1734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(887), + [1736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(316), + [1739] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(317), + [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1746] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(318), + [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(895), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), + [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(899), + [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), + [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), + [1781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), + [1783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(907), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(910), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(909), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1793] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [1801] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(341), + [1804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1806] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(116), + [1809] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(117), + [1812] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(118), + [1815] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), + [1818] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(120), + [1821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121), + [1824] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(344), + [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1831] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(340), + [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1838] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(342), + [1841] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(342), + [1844] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(343), + [1847] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(343), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(929), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(931), + [1862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(354), + [1865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(934), + [1869] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(362), + [1872] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(364), + [1875] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(361), + [1878] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), + [1881] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(363), + [1884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), + [1886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), + [1894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), + [1896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(943), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [1928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(954), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(957), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [1940] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(393), + [1943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), + [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), + [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), + [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), + [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), + [1965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(412), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [1972] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(414), + [1975] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(416), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(982), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), + [2004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), + [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(999), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(433), + [2031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(434), + [2034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(433), + [2037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(435), + [2040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(436), + [2043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(437), + [2046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(438), + [2049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(439), + [2052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(440), + [2055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1004), + [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [2065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2071] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(449), + [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1015), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1026), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), + [2114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), + [2118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [2122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1034), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1038), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1044), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1055), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1057), + [2150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1074), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [2188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1077), + [2190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1078), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1085), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [2268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [2274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [2280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [2286] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), + [2292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1121), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1123), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), + [2310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), + [2314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1131), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1134), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1135), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1137), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1138), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1142), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), + [2354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1149), + [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), + [2358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1152), + [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1151), + [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), + [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1155), + [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1178), + [2398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), + [2400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1181), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1185), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1194), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), + [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1196), + [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), + [2440] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(643), + [2443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), + [2447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), + [2449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), + [2451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), + [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1207), + [2459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), + [2465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1213), + [2467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), + [2471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), + [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1217), + [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), + [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), + [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), + [2483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [2487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(660), + [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [2492] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(662), + [2495] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(663), + [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), + [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), + [2540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), + [2546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(700), + [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1252), + [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1256), + [2571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), + [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [2575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1261), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), + [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), + [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [2593] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(733), + [2596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2598] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(168), + [2601] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169), + [2604] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170), + [2607] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171), + [2610] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(172), + [2613] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(173), + [2616] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(735), + [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1271), + [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [2637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), + [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280), + [2643] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1282), + [2645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), + [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), + [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), + [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), + [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1290), + [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), + [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), + [2671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [2677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [2683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [2691] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(796), + [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), + [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), + [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), + [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), + [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), + [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), + [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), + [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1311), + [2710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1313), + [2712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1314), + [2714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1315), + [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), + [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), + [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [2722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), + [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), + [2726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), + [2728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), + [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), + [2732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), + [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), + [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), + [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), + [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), + [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), + [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), + [2746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), + [2748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [2750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [2752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [2756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), + [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1334), + [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1336), + [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), + [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), + [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), + [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), + [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), + [2796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1344), + [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [2800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1347), + [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1346), + [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1350), + [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), + [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1360), + [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), + [2818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), + [2820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), + [2822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1366), + [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1368), + [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), + [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1371), + [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), + [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), + [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), + [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), + [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), + [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), + [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), + [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), + [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), + [2858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(905), + [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), + [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), + [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), + [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), + [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1387), + [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), + [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1391), + [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1394), + [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), + [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), + [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), + [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), + [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), + [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), + [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), + [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), + [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), + [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), + [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), + [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), + [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1417), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), + [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), + [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1421), + [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), + [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), + [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), + [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), + [2943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), + [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), + [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), + [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), + [2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1433), + [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), + [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), + [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), + [2971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), + [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), + [2977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [2979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), + [2981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [2983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [2985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [2987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [2989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [2995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [2997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), + [2999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1008), + [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [3006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), + [3010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), + [3016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [3018] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1036), + [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), + [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), + [3025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), + [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), + [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), + [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), + [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), + [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), + [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), + [3043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), + [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), + [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), + [3049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [3051] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [3055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), + [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), + [3059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1473), + [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), + [3065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), + [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), + [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), + [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), + [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), + [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), + [3089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), + [3091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [3093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), + [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), + [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [3107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1487), + [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [3113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [3115] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1488), + [3117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), + [3119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), + [3121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [3123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1490), + [3125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [3127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1493), + [3129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), + [3131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), + [3133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), + [3135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), + [3137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498), + [3139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), + [3141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [3143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1500), + [3145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [3147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [3149] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1145), + [3152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), + [3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), + [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), + [3162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [3164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), + [3166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1510), + [3168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), + [3170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [3172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1514), + [3174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), + [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), + [3178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), + [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), + [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), + [3184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), + [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), + [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), + [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), + [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), + [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), + [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [3204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), + [3206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [3208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), + [3210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), + [3214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), + [3216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [3218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), + [3220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), + [3222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [3224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), + [3226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [3228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), + [3230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), + [3232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [3234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), + [3236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), + [3238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [3240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), + [3242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), + [3244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), + [3246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), + [3248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), + [3250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), + [3252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), + [3254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [3256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), + [3258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [3260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [3262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [3264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [3266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [3268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [3270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [3272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), + [3274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [3276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), + [3278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), + [3280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), + [3282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), + [3284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), + [3286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), + [3288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), + [3290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), + [3292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), + [3294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), + [3296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), + [3298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), + [3300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), + [3302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), + [3304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), + [3306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), + [3308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), + [3310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), + [3312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), + [3314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [3316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [3318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), + [3320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [3322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [3324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [3326] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1342), + [3329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), + [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), + [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), + [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), + [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1586), + [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), + [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1590), + [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), + [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), + [3355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), + [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), + [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), + [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), + [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), + [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), + [3369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), + [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), + [3373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [3375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), + [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1605), + [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), + [3381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), + [3383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), + [3385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), + [3387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), + [3389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), + [3391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1613), + [3395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1614), + [3397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), + [3399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), + [3401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), + [3403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), + [3405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), + [3407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [3409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [3411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [3413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [3415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [3417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [3419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), + [3421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), + [3423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1622), + [3425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), + [3427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [3429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), + [3431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [3433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), + [3435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), + [3437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), + [3439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), + [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), + [3443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [3445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), + [3447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), + [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), + [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1636), + [3453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [3455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), + [3457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), + [3459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), + [3461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), + [3463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), + [3465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), + [3467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), + [3469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), + [3471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), + [3473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [3475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), + [3477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), + [3479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), + [3481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), + [3483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), + [3485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), + [3487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), + [3489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [3491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), + [3493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), + [3495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), + [3497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), + [3499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), + [3501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), }; void *tree_sitter_bash_external_scanner_create();